Initial login working

This commit is contained in:
Deon George
2020-08-20 22:33:13 +10:00
parent ed7087c802
commit 4c90ce11f2
28 changed files with 61410 additions and 112 deletions

View File

@@ -11,6 +11,10 @@
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes([
'reset' => false,
'verify' => false,
'register' => false,
]);
Route::get('/home','HomeController@home');