Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active September 21, 2017 16:08
Show Gist options
  • Save uno-de-piera/dd511c437a38a350f67382df9746369a to your computer and use it in GitHub Desktop.
Save uno-de-piera/dd511c437a38a350f67382df9746369a to your computer and use it in GitHub Desktop.
<?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