for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Taken from
* https://github.com/laravel/framework/blob/5.2/src/Illuminate/Auth/Console/stubs/make/controllers/HomeController.stub
*/
namespace App\Http\Controllers;
/**
* Class HomeController.
class HomeController extends Controller
{
* Create a new controller instance.
public function __construct()
$this->middleware('auth');
}
* Show the application dashboard.
*
* @return Response
public function index()
return view('home');