forked from miguel456/rbrecruiter
Miguel N
b5e6a4a94b
This commit also includes Chart.js for the whole project using Webpack. It also updates NPM packages to support ChartJS, and suppresses locale.js warnings from Webpack builds. Gitignore removes the webpack bundle file since that file should be built each time dependencies/js code are modified.
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?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!
|
|
|
|
|
*/
|
|
Auth::routes();
|
|
|
|
Route::get('/','HomeController@index');
|
|
Route::post('/form/contact', 'ContactController@create')
|
|
->name('sendSubmission');
|
|
|
|
|
|
Route::group(['middleware' => 'auth'], function(){
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
//Route::get('/dashboard/login', '');
|
|
|