Auth Setup

This commit is contained in:
2018-03-30 08:08:32 -04:00
parent dd5fd9cc3a
commit 828a54b569
8 changed files with 390 additions and 12 deletions

View File

@ -0,0 +1,28 @@
<?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');
}
}