Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | public function edit(Request $request, Applicant $applicant) |
||
33 | { |
||
34 | $custom_breadcrumbs = [ |
||
35 | 1 | 'home' => route('home'), |
|
36 | 'profile' => '', |
||
37 | 1 | ]; |
|
38 | 1 | ||
39 | $applicant->load([ |
||
40 | 'references.projects', |
||
41 | 'skill_declarations.skill', |
||
42 | 1 | ]); |
|
43 | 1 | ||
44 | 1 | return view('applicant/profile_04_references', [ |
|
45 | 'applicant' => $applicant, |
||
46 | 'profile' => Lang::get('applicant/profile_references'), |
||
47 | 'custom_breadcrumbs' => $custom_breadcrumbs, |
||
48 | ]); |
||
51 |