デフォルトのテンプレートを Laravel で動作させようとしています。私は Codeigniter と Phil Sturgeon のテンプレート システムから来ているので、同様の方法でそれをやろうとしています。私が行方不明/間違っていることを誰かが助けてくれますか? ありがとう!
//default.blade.php (located in layouts/default)
<html>
<title>{{$title}}</title>
<body>
{{$content}}
</body>
</html>
//end default.blade.php
//home.blade.php (index view including header and footer partials)
@layout('layouts.default')
@include('partials.header')
//code
@include('partials.footer')
//end home
//routes.php (mapping route to home controller)
Route::controller( 'home' );
//end
//home.php (controller)
<?php
class Home_Controller extends Base_Controller {
public $layout = 'layouts.default';
public function action_index()
{
$this->layout->title = 'title';
$this->layout->content = View::make( 'home' );
}
}
//end