Skip to content

Instantly share code, notes, and snippets.

@gngchrs
Created July 12, 2016 07:34
Show Gist options
  • Save gngchrs/fb4c511c37b4c96b0b1aba329495ee88 to your computer and use it in GitHub Desktop.
Save gngchrs/fb4c511c37b4c96b0b1aba329495ee88 to your computer and use it in GitHub Desktop.
Same Route Defining multiple controllers
<?php
Route::group(['middleware' => ['web', 'auth','adminMiddleware']], function () {
Route::get('/panel/home', 'UserAdminController@showAdminHome');
Route::get('/panel/home', 'UserRegionController@showAdminRegionHome');
Route::get('/panel/home', 'UserPlaceController@showAdminPlaceHome');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment