2020-04-26 04:09:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Web Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
|
|
|
|
*/
|
2020-04-29 02:20:00 +00:00
|
|
|
Auth::routes();
|
2020-04-26 04:09:32 +00:00
|
|
|
|
2020-04-27 06:28:00 +00:00
|
|
|
Route::get('/','HomeController@index');
|
|
|
|
Route::post('/form/contact', 'ContactController@create')
|
|
|
|
->name('sendSubmission');
|
2020-04-29 02:20:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
Route::group(['middleware' => 'auth'], function(){
|
|
|
|
|
2020-05-02 05:54:14 +00:00
|
|
|
Route::get('/dashboard', 'DashboardController@index');
|
|
|
|
|
2020-04-30 15:38:54 +00:00
|
|
|
Route::group(['prefix' => '/applications'], function (){
|
|
|
|
|
2020-04-30 21:53:57 +00:00
|
|
|
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');
|
2020-04-30 15:38:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2020-05-01 04:42:19 +00:00
|
|
|
Route::group(['prefix' => '/applications'], function (){
|
|
|
|
|
2020-05-01 05:21:44 +00:00
|
|
|
Route::get('/staff/outstanding', 'ApplicationController@showAllPendingApps')
|
|
|
|
->name('staffPendingApps');
|
|
|
|
|
|
|
|
Route::get('/staff/peer-review', 'ApplicationController@showPeerReview')
|
|
|
|
->name('peerReview');
|
2020-05-01 04:42:19 +00:00
|
|
|
|
2020-05-02 05:54:14 +00:00
|
|
|
Route::get('/staff/pending-interview', 'ApplicationController@showPendingInterview')
|
|
|
|
->name('pendingInterview');
|
|
|
|
|
2020-05-01 04:42:19 +00:00
|
|
|
});
|
|
|
|
|
2020-05-02 23:45:29 +00:00
|
|
|
Route::group(['prefix' => '/hr'], function (){
|
|
|
|
|
2020-05-03 03:31:02 +00:00
|
|
|
Route::get('staff-members', 'UserController@showStaffMembers')
|
|
|
|
->name('staffMemberList');
|
|
|
|
|
|
|
|
Route::get('players', 'UserController@showPlayers')
|
|
|
|
->name('registeredPlayerList');
|
2020-05-02 23:45:29 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2020-04-29 02:20:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
//Route::get('/dashboard/login', '');
|
|
|
|
|