swap the modules

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:17:16 -06:00
parent 0293346713
commit 6179cffc45
19 changed files with 87 additions and 382 deletions

View File

@@ -1,18 +0,0 @@
<?php
Route::group(['middleware' => [
'role:admin|user' # leave blank to make this public
]], function() {
# all your routes are prefixed with the above prefix
# e.g. yoursite.com/sample
Route::get('/', 'SampleController@index');
# This is the admin path. Comment this out if you don't have
# an admin panel component.
Route::group([
'middleware' => ['role:admin'],
], function () {
Route::get('/admin', 'AdminController@index');
});
});