From 045b0c42f649f70af7584f154d1e9b4669c23107 Mon Sep 17 00:00:00 2001 From: Miguel N Date: Thu, 30 Apr 2020 16:38:54 +0100 Subject: [PATCH] Added Under Review page The user applications page has been added into the app. --- .../Controllers/ApplicationController.php | 7 +- .../dashboard/user/applications.blade.php | 79 +++++++++++++++++++ routes/web.php | 6 ++ 3 files changed, 91 insertions(+), 1 deletion(-) create mode 100644 resources/views/dashboard/user/applications.blade.php diff --git a/app/Http/Controllers/ApplicationController.php b/app/Http/Controllers/ApplicationController.php index 0c57787..8e2fac7 100644 --- a/app/Http/Controllers/ApplicationController.php +++ b/app/Http/Controllers/ApplicationController.php @@ -6,5 +6,10 @@ use Illuminate\Http\Request; class ApplicationController extends Controller { - // + + public function showPendingUserApplications() + { + return view('dashboard.user.applications'); + } + } diff --git a/resources/views/dashboard/user/applications.blade.php b/resources/views/dashboard/user/applications.blade.php new file mode 100644 index 0000000..8fc3099 --- /dev/null +++ b/resources/views/dashboard/user/applications.blade.php @@ -0,0 +1,79 @@ +@extends('adminlte::page') + +@section('title', 'Raspberry Network | Applications') + +@section('content_header') + +

My Account / Applications

+ +@stop + +@section('content') + +
+ +
+ +
+
Application Process
+ +

Please allow up to three days for your application to be processed. Your application will be reviewed by every team member, and will move up in stages.

+

If an interview is scheduled, you'll need to open your application here and confirm the time, date, and location assigned for you.

+
+ +
+ +
+ +
+ +
+ +
+
+

My Ongoing Applications

+
+ +
+ + + + + + + + + + + + + + + + + + +
#ApplicantStatusActions
1.Jonathan SmithApproved + + + + +
+ +
+ + + +
+ +
+ +
+ +@stop diff --git a/routes/web.php b/routes/web.php index b86bdc6..4423f36 100644 --- a/routes/web.php +++ b/routes/web.php @@ -23,6 +23,12 @@ Route::group(['middleware' => 'auth'], function(){ Route::get('/dashboard', 'DashboardController@index'); + Route::group(['prefix' => '/applications'], function (){ + + Route::get('/pending', 'ApplicationController@showPendingUserApplications'); + + }); + }); //Route::get('/dashboard/login', '');