这就是问题所在,它没有读取 @layout()
在文件夹 View/authors/index.blade.php 内
@layout('layouts.default')
@section('内容')
作者主页
@endsection
在文件夹 Controllers/authors.php
类 Authors_Controller 扩展 Base_Controller{
public $restful = true; public function get_index(){ return View::make('authors.index')->with('title', 'Autores e Livros'); }
}
在文件夹 View/layouts/default.blade.php
基本的html
<html>
<head> <title> {{ $title }} </title> </head>
<body>
{{ $content }}
</body>
</html>
我的错误在哪里?为什么不读?