name('sendSubmission'); Route::group(['middleware' => 'auth'], function(){ Route::get('/dashboard', 'DashboardController@index'); Route::group(['prefix' => '/applications'], function (){ 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'); }); Route::group(['prefix' => '/applications'], function (){ Route::get('/staff/outstanding', 'ApplicationController@showAllPendingApps') ->name('staffPendingApps'); Route::get('/staff/peer-review', 'ApplicationController@showPeerReview') ->name('peerReview'); Route::get('/staff/pending-interview', 'ApplicationController@showPendingInterview') ->name('pendingInterview'); }); }); //Route::get('/dashboard/login', '');