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.
31 lines
571 B
PHP
31 lines
571 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class ApplicationController extends Controller
|
|
{
|
|
|
|
public function showPendingUserApps()
|
|
{
|
|
return view('dashboard.user.applications');
|
|
}
|
|
|
|
public function showDeniedUserApps()
|
|
{
|
|
return view('dashboard.user.deniedapplications');
|
|
}
|
|
|
|
public function showApprovedApps()
|
|
{
|
|
return view('dashboard.user.approvedapplications');
|
|
}
|
|
|
|
public function showAllPendingApps()
|
|
{
|
|
return view('dashboard.appmanagement.outstandingapps');
|
|
}
|
|
|
|
}
|