这是问题,它不是在阅读@layout()

在文件夹View/authors/index.blade.php中
@layout( 'layouts.default')
@section( '内容')
作者主页
@endsection
在文件夹Controllers/authors.php中
class Authors_Controller扩展Base_Controller {
Run Code Online (Sandbox Code Playgroud)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>
Run Code Online (Sandbox Code Playgroud)
哪里是我的错误?为什么不读书?