Add more airlines and fix edit bugs

This commit is contained in:
2026-04-20 09:23:26 +10:00
parent 4244b8835d
commit 8d7d8f02d3
66 changed files with 877 additions and 614 deletions
+3
View File
@@ -72,6 +72,9 @@ Route::domain(config('app.domain'))->group(
Route::get('/u/{username}', [FlightProfileController::class, 'view'])->name('profile.view');
Route::get('/u/{username}/map', [FlightProfileController::class, 'map'])->name('profile.map');
Route::get('/u/{username}/departure-board', [FlightProfileController::class, 'departureBoard'])->name('profile.departure-board');
Route::get('/u/{username}/boarding-passes', [FlightProfileController::class, 'boardingPasses'])->name('profile.boarding-passes');
require __DIR__.'/auth.php';