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

@@ -0,0 +1,12 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
public function home() {
return view('home');
}
}