fix: config default route to login page
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
Vincent Chandra Trie Novan 2025-04-27 22:00:19 +07:00
parent 075020d451
commit 53e199fb6f

View File

@ -12,7 +12,7 @@ use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('welcome');
return Inertia::render('auth/login');
})->name('home');
Route::middleware(['auth', 'verified'])->group(function () {