en controllers cree un archivo authors.php
- laravel
-application
-controllers
authors.php
authors.php contiene
Código PHP:
Ver original
<? class Authors_Controller extends Base_Controller { public $restful = true; public function get_index() { return View::make('authors.index'); } }
routes.php
Código PHP:
Ver original
y en la vista cree un carpeta
-views
-authors
index.php
y en index.php
Código HTML:
Ver original
y al verificar en el navedor http://localhost/laravel/public/authors obtengo
Not Found
The requested URL /laravel/public/authors was not found on this server.
que estoy haciendo mal