php - laravel 4 routing to controller -



php - laravel 4 routing to controller -

i'm missing on laravel routing. here's route:

route::controller('admin', 'admincontroller', array('only' => array('index')));

here's controller:

// admincontroller.php class admincontroller extends basecontroller { /** * @return response */ public function index() { homecoming 'admin!'; } }

when visit /admin 404 error. i'm not sure why! expect admin!

you should rename index() method getindex() when using route::controller

php laravel

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

ubuntu - Bash Script to Check That Files Are Being Created -

Php operator `break` doesn't stop while -