Updated Map View

This commit is contained in:
2026-06-16 11:16:32 +10:00
parent a270913931
commit 3aba428d2a
19 changed files with 790 additions and 654 deletions
+1 -7
View File
@@ -29,13 +29,7 @@ use Inertia\Inertia;
*/
Route::domain(config('app.domain'))->group(
function() {
Route::get('/', function () {
if (auth()->check()) {
return redirect()->route('profile.view', auth()->user()->name);
}
return redirect()->route('login');
});
Route::get('/', [FlightProfileController::class, 'index'])->name('home');
Route::get('/dashboard', function () {