Created
July 12, 2016 07:34
-
-
Save gngchrs/fb4c511c37b4c96b0b1aba329495ee88 to your computer and use it in GitHub Desktop.
Same Route Defining multiple controllers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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