Adding User login and registration

This commit is contained in:
2018-09-09 01:03:41 -03:00
parent e57b5e7206
commit 112d3dc44e
9 changed files with 417 additions and 1 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');
}
}