1 |
21570473
|
Adam Mištera
|
<?php
|
2 |
|
|
|
3 |
|
|
namespace App\Http\Controllers;
|
4 |
|
|
|
5 |
|
|
use Illuminate\Http\Request;
|
6 |
|
|
|
7 |
|
|
/*
|
8 |
|
|
* Automatically generated by Laravel auth. Leaved in case of future usage.
|
9 |
|
|
*/
|
10 |
|
|
class HomeController extends Controller
|
11 |
|
|
{
|
12 |
|
|
/**
|
13 |
|
|
* Create a new controller instance.
|
14 |
|
|
*
|
15 |
|
|
* @return void
|
16 |
|
|
*/
|
17 |
|
|
public function __construct()
|
18 |
|
|
{
|
19 |
|
|
$this->middleware('auth');
|
20 |
|
|
}
|
21 |
|
|
|
22 |
|
|
/**
|
23 |
|
|
* Show the application dashboard.
|
24 |
|
|
*
|
25 |
|
|
* @return \Illuminate\Contracts\Support\Renderable
|
26 |
|
|
*/
|
27 |
|
|
public function index()
|
28 |
|
|
{
|
29 |
|
|
return view('home');
|
30 |
|
|
}
|
31 |
|
|
}
|