これが問題であり、@ layout()を読み取っていません。
フォルダ内View/authors / index.blade.php
@layout('layouts.default')
@section('content')
著者のホームページ
@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>
私のエラーはどこにありますか?なぜ読んでいないのですか?