diff --git a/routes/web.php b/routes/web.php index 23455e3..ff9250e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -9,6 +9,7 @@ use App\Http\Controllers\Common\CommonController; use App\Http\Controllers\Segment\Pengguna\Tempahan\TempahanBilikController; use App\Http\Controllers\Segment\Admin\Tempahan\Bilik\AdminTempahanBilikController; +use App\Http\Controllers\Auth\AuthenticatedSessionController; /* |-------------------------------------------------------------------------- | Web Routes @@ -20,9 +21,7 @@ | */ -Route::get('/', function () { - return view('welcome'); -}); +Route::get('/', [AuthenticatedSessionController::class, 'create']); Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard'); Route::post('/get-events', [DashboardController::class, 'getEvents'])->name('getEvents');