Add "My Profile" Page

This commit adds the layout for the profile page, for users and staff members.
This commit is contained in:
2020-04-30 22:53:57 +01:00
parent 76d6ea6704
commit c802908bf3
9 changed files with 319 additions and 6 deletions

View File

@@ -21,12 +21,20 @@ Route::post('/form/contact', 'ContactController@create')
Route::group(['middleware' => 'auth'], function(){
Route::get('/dashboard', 'DashboardController@index');
Route::group(['prefix' => '/applications'], function (){
Route::get('/pending', 'ApplicationController@showPendingUserApps');
Route::get('/denied', 'ApplicationController@showDeniedUserApps');
Route::get('/pending', 'ApplicationController@showPendingUserApps')
->name('userPendingApps');
Route::get('/denied', 'ApplicationController@showDeniedUserApps')
->name('userDeniedApps');
Route::get('/approved', 'ApplicationController@showApprovedApps')
->name('userApprovedApps');
});
Route::group(['prefix' => '/profile'], function (){
Route::get('/settings', 'ProfileController@index');
});