So, I\'ve been able to get restful controllers working with
Route::controller(\'users\',\'UserController\'); class UserController extends BaseController { p
Try this:
Route::get('/',array('as'=>'named_route','uses'=>'yourRestfulController@getMethod'));
This works nice for me. The trick was adding the action type after @ part. You should use the full name of the method unlike in L3.