Add interview page (incomplete commit)

This commit is contained in:
2020-05-02 06:54:14 +01:00
parent e0e417e631
commit 623200914d
13 changed files with 38861 additions and 9 deletions

View File

@@ -21,6 +21,8 @@ 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')
@@ -46,6 +48,9 @@ Route::group(['middleware' => 'auth'], function(){
Route::get('/staff/peer-review', 'ApplicationController@showPeerReview')
->name('peerReview');
Route::get('/staff/pending-interview', 'ApplicationController@showPendingInterview')
->name('pendingInterview');
});
});