我正在学习 Laravel 3,但 Blade 模板不起作用。我的代码似乎是正确的,但它显示的只是@layout('master')
. 页面源也仅包含此文本。
application\views\home\index.blade.php
内容:
@layout('master')
@section('main')
{{ $greeting }}
@endsection
application\views\master.blade.php
内容:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hello world!</title>
</head>
<body>
<div id="container">
@yield('main')
</div>
</body>
</html>
并在routes.php
:
Route::get('/, home', function()
{
$greeting = "Hello world";
return View::make('home.index')->with('greeting',$greeting);
});
什么会导致刀片不工作?我也尝试了 Laravel 4,并更改为@layout
,@extends
但情况相同。我只得到.@endsection
@stop
@extends('master')