私は Laravel を初めて使用します。ブレードを使用せずにレイアウトを作成したいと考えています。
header.php ビューと footer.php ビューを作成しました。
filters.php ファイルで、次のようにしました。
App::before(function($request)
{
return View::make('layout/top');
//
});
App::after(function($request, $response)
{
return View::make('layout/bot');
//
});
そして私のルートでは:
Route::get('/', function()
{
return View::make('hello');
});
ヘッダーは問題なく表示されますが、hello ビューやフッター ビューは表示されません。
私は何を間違っていますか?