Laravel 3 を学習していますが、Blade テンプレートが機能しません。私のコードは正しいようですが、表示されるのは@layout('master')
. ページのソースにもこのテキストのみが含まれています。
application\views\home\index.blade.php
コンテンツ:
@layout('master')
@section('main')
{{ $greeting }}
@endsection
application\views\master.blade.php
コンテンツ:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hello world!</title>
</head>
<body>
<div id="container">
@yield('main')
</div>
</body>
</html>
とでroutes.php
:
Route::get('/, home', function()
{
$greeting = "Hello world";
return View::make('home.index')->with('greeting',$greeting);
});
ブレードが機能しない原因は何ですか? Laravel 4も試してみましたが、に変わり@layout
ましたが、同じ状況になりました。私は得るだけです。@extends
@endsection
@stop
@extends('master')