64e470abec
Adds a new db field for radio telephony callsign for airlines. Also adds necessary field to admin template.
134 lines
2.7 KiB
PHP
134 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use App\Models\Enums\JournalType;
|
|
use App\Models\Traits\FilesTrait;
|
|
use App\Models\Traits\JournalTrait;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Support\Str;
|
|
|
|
/**
|
|
* @property mixed id
|
|
* @property string code
|
|
* @property string icao
|
|
* @property string iata
|
|
* @property string name
|
|
* @property string callsign
|
|
* @property string logo
|
|
* @property string country
|
|
* @property Journal journal
|
|
*/
|
|
class Airline extends Model
|
|
{
|
|
use FilesTrait;
|
|
use HasFactory;
|
|
use JournalTrait;
|
|
|
|
public $table = 'airlines';
|
|
|
|
/**
|
|
* The journal type for the callback
|
|
*/
|
|
public $journal_type = JournalType::AIRLINE;
|
|
|
|
protected $fillable = [
|
|
'icao',
|
|
'iata',
|
|
'name',
|
|
'callsign',
|
|
'logo',
|
|
'country',
|
|
'total_flights',
|
|
'total_time',
|
|
'active',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'total_flights' => 'int',
|
|
'total_time' => 'int',
|
|
'active' => 'boolean',
|
|
];
|
|
|
|
/**
|
|
* Validation rules
|
|
*
|
|
* @var array
|
|
*/
|
|
public static $rules = [
|
|
'country' => 'nullable',
|
|
'iata' => 'nullable|max:5',
|
|
'icao' => 'required|max:5',
|
|
'logo' => 'nullable',
|
|
'name' => 'required',
|
|
'callsign' => 'nullable',
|
|
];
|
|
|
|
/**
|
|
* For backwards compatibility
|
|
*/
|
|
public function code(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: function ($_, $attrs) {
|
|
if ($this->iata && $this->iata !== '') {
|
|
return $this->iata;
|
|
}
|
|
|
|
return $this->icao;
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Capitalize the IATA code when set
|
|
*/
|
|
public function iata(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: fn ($iata) => Str::upper($iata)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Capitalize the ICAO when set
|
|
*/
|
|
public function icao(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: fn ($icao) => Str::upper($icao)
|
|
);
|
|
}
|
|
|
|
/*
|
|
* FKs
|
|
*/
|
|
|
|
public function subfleets()
|
|
{
|
|
return $this->hasMany(Subfleet::class, 'airline_id');
|
|
}
|
|
|
|
public function aircraft()
|
|
{
|
|
return $this->hasManyThrough(Aircraft::class, Subfleet::class);
|
|
}
|
|
|
|
public function flights()
|
|
{
|
|
return $this->belongsTo(Flight::class, 'airline_id');
|
|
}
|
|
|
|
public function pireps()
|
|
{
|
|
return $this->belongsTo(Pirep::class, 'airline_id');
|
|
}
|
|
}
|