Laravel 4中的嵌套控制器

I'm just giving the new Laravel 4 a try and can't seem to fathom out a way of nesting controllers. Are nested controllers still around in Laravel 4 and is so how would I route to them in my routes file?

In my Laravel 3 apps I used Controller::detect() and all my nested routes were picked up, but I understand this feature has been removed from Laravel 4?

Do I just explicitly define each Route::resource in my routes file?

According to the documentation you do need to explicitly route each resource: http://four.laravel.com/docs/controllers#resource-controllers

For Brevity purposes:

Route::controller('example', 'ExampleController');

Route::get('example', array('uses' => 'ExampleController@getIndex');