Rather than using Route::get, Route::post etc for my controller requests I decided to use the Route::controller method, really helps cut down on code lines in route.php.
However I had previously set up some "route" names, for example my previous code included:
Route::get('admin/baserate/view', array('as' => 'baserateview','uses'=>'BaserateController@getView'));
but now I'm using Route::controller I don't know how to implement the route alias name "baserateview". My new code looks like:
Route::controller('admin/baserate', 'BaserateController');
Is there any way I can do this?