| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 44.44% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class HomepageController extends Controller |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Show the applicant home page |
||
| 13 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
| 14 | */ |
||
| 15 | 5 | public function applicant() |
|
| 16 | { |
||
| 17 | 5 | return view('applicant/home', [ |
|
| 18 | 5 | 'home' => Lang::get('applicant/home'), |
|
| 19 | 5 | 'hero' => Lang::get('common/hero') |
|
| 20 | ]); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Show the manager home page |
||
| 25 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
| 26 | */ |
||
| 27 | public function manager() |
||
| 34 | ] |
||
| 35 | ]); |
||
| 38 |