Setup vue and authentication with database

This commit is contained in:
Dillon Ngo
2023-10-21 04:17:19 +08:00
parent ad0007617e
commit 04acbbac6f
31 changed files with 59668 additions and 9 deletions
+28
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\Contracts\Support\Renderable
*/
public function index()
{
return view('home');
}
}