'string', 'flight_time' => 'integer', 'planned_flight_time' => 'integer', 'level' => 'integer', 'altitude' => 'integer', 'fuel_used' => 'float', 'gross_weight' => 'float', 'source' => 'integer', 'state' => 'integer', 'status' => 'integer', ]; /** * Validation rules * * @var array */ public static $rules = [ 'dpt_airport_id' => 'required', 'arr_airport_id' => 'required', ]; /** * Get the flight ident, e.,g JBU1900 * @return string */ public function getIdentAttribute() { $flight_id = $this->airline->code; if ($this->flight_id) { $flight_id .= $this->flight->flight_number; } else { $flight_id .= $this->flight_number; } return $flight_id; } /** * Foreign Keys */ public function aircraft() { return $this->belongsTo('App\Models\Aircraft', 'aircraft_id'); } public function airline() { return $this->belongsTo('App\Models\Airline', 'airline_id'); } public function arr_airport() { return $this->belongsTo('App\Models\Airport', 'arr_airport_id'); } public function dpt_airport() { return $this->belongsTo('App\Models\Airport', 'dpt_airport_id'); } public function comments() { return $this->hasMany('App\Models\PirepComment', 'pirep_id'); } public function events() { return $this->hasMany('App\Models\PirepEvent', 'pirep_id'); } public function fields() { return $this->hasMany('App\Models\PirepFieldValues', 'pirep_id'); } public function flight() { return $this->belongsTo('App\Models\Flight', 'flight_id'); } public function pilot() { return $this->user(); } public function route() { return []; } public function user() { return $this->belongsTo('App\Models\User', 'user_id'); } }