Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function show() |
||
18 | { |
||
19 | $custom_breadcrumbs = [ |
||
20 | 'home' => route(WhichPortal::prefixRoute('home')), |
||
|
|||
21 | 'jobs' => route(WhichPortal::prefixRoute('jobs.index')), |
||
22 | 'builder' => '', |
||
23 | ]; |
||
24 | |||
25 | return view( |
||
26 | 'manager/job-builder-root' |
||
27 | )->with([ |
||
28 | 'title' => Lang::get('manager/job_builder.title'), |
||
29 | 'custom_breadcrumbs' => $custom_breadcrumbs |
||
30 | ]); |
||
41 |