Save user flights

This commit is contained in:
2026-04-05 18:52:24 +10:00
parent d0fe6d78d3
commit 9631e7949d
4 changed files with 8 additions and 5 deletions
+4
View File
@@ -34,6 +34,10 @@ Route::domain(config('app.domain'))->group(
Route::get('/reconcile', function () {
$flight = new FlightImportController()->reconcile(request());
if (!$flight) {
return to_route('import.fr24');
}
return Inertia::render('ReconcileFlight', [
'flight' => $flight,
'key' => $flight['imported_flight_id'],