Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | public function edit(Request $request, Applicant $applicant) |
||
32 | { |
||
33 | $custom_breadcrumbs = [ |
||
34 | 'home' => route('home'), |
||
35 | 'profile' => '', |
||
36 | ]; |
||
37 | |||
38 | return view('applicant/profile_02_experience', [ |
||
39 | 'applicant' => $applicant, |
||
40 | 'profile' => Lang::get('applicant/profile_experience'), |
||
41 | 'custom_breadcrumbs' => $custom_breadcrumbs, |
||
42 | 'disable_clone_js' => true, |
||
43 | ]); |
||
46 |