How to apply multiple filters on route group in Laravel 4?
问题 Goal : I want to make route filter in Laravel 4 using Route::group and Route::filter Description I have 2 types of user : Internal Distributor For, Internal , I have 2 groups: admin regular For Distributor , I have 4 groups: gold silver bronze oem Eligible Route OEM Distributor are eligible for only 5 routes. Route::get('distributors/{id}', array('before' =>'profile', 'uses'=>'DistributorController@show')); Route::get('distributors/{id}/edit', 'DistributorController@edit'); Route::put(