Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
| HomeController | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
0 / 0 |
| __construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
| index | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
| <?php | |
| namespace App\Http\Controllers; | |
| use Illuminate\Http\Request; | |
| class HomeController extends Controller | |
| { | |
| /** | |
| * Create a new controller instance. | |
| * | |
| * @return void | |
| */ | |
| public function __construct() | |
| { | |
| $this->middleware('auth'); | |
| } | |
| /** | |
| * Show the application dashboard. | |
| * | |
| * @return \Illuminate\Http\Response | |
| */ | |
| public function index() | |
| { | |
| return view('home'); | |
| } | |
| } |