In Larvel 4 I\'m trying to setup nested resource controllers.
in routes.php:
Route::resour
See https://github.com/laravel/framework/issues/170 Found my answer there (see what Taylor wrote)
For those who want to see my code that works now in routes.php:
Route::group(array('prefix' => 'admin'), function() {
// Responds to Request::root() . '/admin/photo'
Route::resource('photo', 'Controllers\\Admin\\PhotoController');
});