fix seeder menu role and user assign, create 503 page and fix redirect home

This commit is contained in:
arifal
2025-03-12 15:37:22 +07:00
parent 238aaba96c
commit a1f4bd7f81
9 changed files with 442 additions and 403 deletions

View File

@@ -37,7 +37,7 @@ require __DIR__ . '/auth.php';
Route::group(['middleware' => 'auth'], function(){
Route::get('', [BigDataController::class, 'index'])->name('any');
Route::get('/home', [HomeController::class, 'index']);
Route::get('/home', [HomeController::class, 'index'])->name('home');
//dashboards
Route::group(['prefix' => '/dashboards'], function(){