Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | class HomeController extends Controller |
||
8 | { |
||
9 | /** |
||
10 | * Create a new controller instance. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function __construct() |
||
16 | //$this->middleware('auth'); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Show the application home. |
||
21 | * |
||
22 | * @return \Illuminate\Http\Response |
||
23 | */ |
||
24 | public function index() |
||
25 | { |
||
26 | return view('home.index'); |
||
|
|||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Show the about page. |
||
31 | * |
||
32 | * @return \Illuminate\Http\Response |
||
33 | */ |
||
34 | public function about() |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Show the help page. |
||
41 | * |
||
42 | * @return \Illuminate\Http\Response |
||
43 | */ |
||
44 | public function help() |
||
45 | { |
||
46 | return view('home.help'); |
||
47 | } |
||
49 |