This is the problem, its not reading @layout()

Inside the folder View/authors/index.blade.php
@layout('layouts.default')
@section('content')
Authors Home Page
@endsection
In the folder Controllers/authors.php
class Authors_Controller extends Base_Controller{
public $restful = true; public function get_index(){ return View::make('authors.index')->with('title', 'Autores e Livros'); }}
and inside the folder View/layouts/default.blade.php
basic html
<html>
<head> <title> {{ $title }} </title> </head>
<body>
{{ $content }}
</body>
</html>
Where's my error? why is it not reading?
