refactor: simplify welcome view and update web route to return a basic string response

This commit is contained in:
Yoga Pangestu 2026-03-30 11:47:33 +07:00
parent 54421c8b61
commit 95b89efcaa
2 changed files with 115 additions and 265 deletions

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return redirect()->route('filament.admin.auth.login');
return view('welcome');
});
Route::get('/share/presensi/{token}', [ShareAttendanceController::class, 'show'])->name('share.attendance');