136 lines
2.9 KiB
PHP
136 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Traits\Expensable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
/**
|
|
* Class Airport
|
|
* @property float ground_handling_cost
|
|
* @package App\Models
|
|
*/
|
|
class Airport extends BaseModel
|
|
{
|
|
use Expensable;
|
|
use Notifiable;
|
|
|
|
public $table = 'airports';
|
|
public $timestamps = false;
|
|
public $incrementing = false;
|
|
|
|
public $fillable = [
|
|
'id',
|
|
'iata',
|
|
'icao',
|
|
'name',
|
|
'location',
|
|
'country',
|
|
'lat',
|
|
'lon',
|
|
'hub',
|
|
'timezone',
|
|
'ground_handling_cost',
|
|
'fuel_100ll_cost',
|
|
'fuel_jeta_cost',
|
|
'fuel_mogas_cost',
|
|
];
|
|
|
|
protected $casts = [
|
|
'lat' => 'float',
|
|
'lon' => 'float',
|
|
'hub' => 'boolean',
|
|
'ground_handling_cost' => 'float',
|
|
'fuel_100ll_cost' => 'float',
|
|
'fuel_jeta_cost' => 'float',
|
|
'fuel_mogas_cost' => 'float',
|
|
];
|
|
|
|
/**
|
|
* Validation rules
|
|
*/
|
|
public static $rules = [
|
|
'icao' => 'required',
|
|
'iata' => 'nullable',
|
|
'name' => 'required',
|
|
'location' => 'nullable',
|
|
'lat' => 'required|numeric',
|
|
'lon' => 'required|numeric',
|
|
'ground_handling_cost' => 'nullable|numeric',
|
|
];
|
|
|
|
/**
|
|
* Callbacks
|
|
*/
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::creating(function ($model) {
|
|
if(filled($model->iata)) {
|
|
$model->iata = strtoupper(trim($model->iata));
|
|
}
|
|
|
|
$model->icao = strtoupper(trim($model->icao));
|
|
$model->id = $model->icao;
|
|
});
|
|
|
|
static::updating(function($model) {
|
|
if (filled($model->iata)) {
|
|
$model->iata = strtoupper(trim($model->iata));
|
|
}
|
|
|
|
$model->icao = strtoupper(trim($model->icao));
|
|
$model->id = $model->icao;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param $icao
|
|
*/
|
|
public function setIcaoAttribute($icao)
|
|
{
|
|
$icao = strtoupper($icao);
|
|
$this->attributes['id'] = $icao;
|
|
$this->attributes['icao'] = $icao;
|
|
}
|
|
|
|
/**
|
|
* @param $iata
|
|
*/
|
|
public function setIataAttribute($iata)
|
|
{
|
|
$iata = strtoupper($iata);
|
|
$this->attributes['iata'] = $iata;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return full name like:
|
|
* KJFK - John F Kennedy
|
|
* @return string
|
|
*/
|
|
public function getFullNameAttribute(): string
|
|
{
|
|
return $this->icao . ' - ' . $this->name;
|
|
}
|
|
|
|
/**
|
|
* Shorthand for getting the timezone
|
|
* @return string
|
|
*/
|
|
public function getTzAttribute(): string
|
|
{
|
|
return $this->timezone;
|
|
}
|
|
|
|
/**
|
|
* Shorthand for setting the timezone
|
|
* @param $value
|
|
*/
|
|
public function setTzAttribute($value)
|
|
{
|
|
$this->attributes['timezone'] = $value;
|
|
}
|
|
}
|