Added admin controls for missing airlines

This commit is contained in:
2026-08-21 22:41:29 +10:00
parent a6bf1c09fe
commit 4a296705a6
9 changed files with 132 additions and 25 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class UserFlightIgnoreMissingAirline extends Model
{
protected $table = 'user_flights_ignore_missing_airlines';
protected $fillable = [
'user_flight_id',
];
public function userFlight(): BelongsTo
{
return $this->belongsTo(UserFlight::class);
}
}