| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __invoke() |
||
| 17 | { |
||
| 18 | return view( |
||
|
|
|||
| 19 | 'applicant/static_faq', |
||
| 20 | [ |
||
| 21 | 'faq' => Lang::get('applicant/faq'), |
||
| 22 | 'breadcrumb_home' => route('home'), |
||
| 23 | 'applicant_sidebar_active' => 'active', |
||
| 24 | 'partner_departments' => Department::where('is_partner', true) |
||
| 25 | ->orderBy('lft', 'asc') |
||
| 26 | ->select('name', 'is_host') |
||
| 27 | ->get(), |
||
| 28 | ] |
||
| 32 |