added some user scaffolding

This commit is contained in:
Nabeel Shahzad
2017-06-08 20:56:57 -05:00
parent fa6a8d0f22
commit c8284972c2
3 changed files with 34 additions and 11 deletions

View File

@@ -18,7 +18,16 @@ Route::get('/', function () {
Route::get('/home', 'HomeController@index');
/**
* User routes that require auth
*/
Route::group([
'namespace' => 'User',
'middleware' => 'auth',
], function () {
});
/**
* Admin routes