phpvms/app/Models/Airline.php

100 lines
1.9 KiB
PHP
Raw Normal View History

2017-06-09 09:02:52 +08:00
<?php
namespace App\Models;
use App\Contracts\Model;
use App\Models\Enums\JournalType;
2018-04-03 00:08:38 +08:00
use App\Models\Traits\FilesTrait;
use App\Models\Traits\JournalTrait;
2017-06-09 09:02:52 +08:00
/**
2017-06-20 00:50:25 +08:00
* Class Airline
2018-08-27 00:40:04 +08:00
*
* @property mixed id
* @property string code
* @property string icao
* @property string iata
* @property string name
* @property string logo
* @property string country
2018-03-03 07:29:11 +08:00
* @property Journal journal
2017-06-09 09:02:52 +08:00
*/
class Airline extends Model
2017-06-09 09:02:52 +08:00
{
2018-04-03 00:08:38 +08:00
use FilesTrait;
use JournalTrait;
2017-06-09 09:02:52 +08:00
public $table = 'airlines';
/**
* The journal type for the callback
*/
public $journal_type = JournalType::AIRLINE;
2018-03-21 08:40:19 +08:00
protected $fillable = [
2017-08-16 21:11:39 +08:00
'icao',
2017-07-23 12:03:39 +08:00
'iata',
2017-06-09 09:02:52 +08:00
'name',
2017-08-16 21:11:39 +08:00
'logo',
'country',
'total_flights',
'total_time',
2017-07-08 21:09:58 +08:00
'active',
2017-06-09 09:02:52 +08:00
];
/**
* The attributes that should be casted to native types.
2018-08-27 00:40:04 +08:00
*
2017-06-09 09:02:52 +08:00
* @var array
*/
protected $casts = [
'total_flights' => 'int',
'total_time' => 'int',
'active' => 'boolean',
2017-06-09 09:02:52 +08:00
];
/**
* Validation rules
2018-08-27 00:40:04 +08:00
*
2017-06-09 09:02:52 +08:00
* @var array
*/
public static $rules = [
'country' => 'nullable',
'iata' => 'nullable|max:5',
'icao' => 'required|max:5',
'logo' => 'nullable',
'name' => 'required',
2017-06-09 09:02:52 +08:00
];
2017-08-16 21:11:39 +08:00
/**
* For backwards compatibility
*/
public function getCodeAttribute()
{
2018-08-27 00:40:04 +08:00
if ($this->iata && $this->iata !== '') {
return $this->iata;
}
return $this->icao;
2017-08-16 21:11:39 +08:00
}
/**
* Capitalize the IATA code when set
2018-08-27 00:40:04 +08:00
*
* @param $iata
*/
public function setIataAttribute($iata)
2018-01-01 04:20:52 +08:00
{
$this->attributes['iata'] = strtoupper($iata);
}
2018-01-01 04:20:52 +08:00
/**
* Capitalize the ICAO when set
2018-08-27 00:40:04 +08:00
*
* @param $icao
*/
public function setIcaoAttribute($icao): void
{
$this->attributes['icao'] = strtoupper($icao);
2018-01-01 04:20:52 +08:00
}
2017-06-09 09:02:52 +08:00
}