我今天使用的是 Laravel 4 的全新版本。
我有一个仪表板控制器
class DashboardController extends BaseController {
protected $layout = 'layouts.dashboard';
public function index()
{
$this->layout->content = View::make('dashboard.default');
}
}
我有一条简单的路线
Route::get('/', 'DashboardController@index');
我在views/layouts/dashboard.blade.php 中有一个刀片布局为了从所有实际的HTML 中拯救每个人,我使用了一个模型。
<html>
<head>
<title></title>
</head>
<body>
@yield('content')
</body>
</html>
我在 views/dashboard/ 中有一个默认刀片文件,它具有以下内容(为简单起见进行了编辑)
@section('content')
<p>This is not rocket science</p>
@stop
由于某种原因,内容在布局之前生成。