Last active
September 21, 2017 16:08
-
-
Save uno-de-piera/dd511c437a38a350f67382df9746369a to your computer and use it in GitHub Desktop.
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(['prefix' => 'admin', function() { | |
Route::resource('users', 'UserController'); | |
Route::fallback('AdminController@notFound'); | |
}]); | |
Route::resource('posts', 'PostController'); | |
Route::fallback('BaseController@notFound'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment