hola amigos me estoy iniciando en el framework , y estoy siguiendo el videotutorial
http://www.youtube.com/watch?v=Zz_R73eW3OU laravel controller ,action,passing data
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
y en la vista cree un carpeta
-views
-authors
index.php
y en index.php
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