【发布时间】:2014-03-19 11:41:55
【问题描述】:
我正在处理当前无法正常工作的母版页。在浏览器中返回:
@layout('master') 而不是指定的键。
routes.php 中的代码
Route::get('/', function()
{
return View::make('index');
});
视图中的代码:index.blade.php
@layout('master')
@section('container')
<h1> Hey </h1>
@endsection
视图中的代码:master.blade.php
<div class="container">
@yield('container')
【问题讨论】:
-
发现问题,从布局编辑到扩展。
标签: php laravel laravel-4 blade