Is it possible to add middleware to all or some items of a resourceful route?
For example...
You could use Route Group coupled with Middleware concept: http://laravel.com/docs/master/routing
Route::group(['middleware' => 'auth'], function() { Route::resource('todo', 'TodoController', ['only' => ['index']]); });