Add base UI for account management

This commit is contained in:
Dane Everitt
2018-06-11 22:36:43 -07:00
parent e5e66fdb58
commit 14927c3e7e
8 changed files with 220 additions and 14 deletions

View File

@@ -16,11 +16,11 @@ Route::get('/', 'IndexController@index')->name('index');
| Endpoint: /account
|
*/
Route::group(['prefix' => 'account'], function () {
Route::get('/', 'AccountController@index')->name('account');
Route::post('/', 'AccountController@update');
});
//Route::group(['prefix' => 'account'], function () {
// Route::get('/', 'AccountController@index')->name('account');
//
// Route::post('/', 'AccountController@update');
//});
/*
|--------------------------------------------------------------------------