Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function complete(/* JobPoster $jobPoster */) |
||
20 | { |
||
21 | // Dummy Data |
||
22 | $applicant = Auth::user()->applicant; |
||
23 | $jobPoster = JobPoster::where('job_poster_status_id', '10')->first(); |
||
24 | $application = JobApplication::where('job_poster_id', $jobPoster->id)->first(); |
||
25 | |||
26 | return view( |
||
|
|||
27 | 'applicant/application/10-congrats', |
||
28 | [ |
||
29 | 'applicant' => $applicant, |
||
30 | 'application' => $application, |
||
31 | 'application_template' => Lang::get( |
||
32 | 'applicant/application_template', |
||
33 | ['security_clearance' => $jobPoster->security_clearance->value ] |
||
34 | ), |
||
35 | 'jobPoster' => $jobPoster, |
||
36 | ] |
||
40 |