Vorlagen in Laravel

Ich versuche, meine Standardvorlage mit Laravel zum Laufen zu bringen. Ich komme aus dem Vorlagensystem von Codeigniter und Phil Sturgeon, also versuche ich es auf ähnliche Weise. Kann mir jemand bei dem helfen, was ich vermisse / falsch mache? Vielen Dank!

//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

Antworten auf die Frage(2)

Ihre Antwort auf die Frage