106 lines
2.0 KiB
PHP
106 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Eloquent as Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Pirep
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class Pirep extends Model
|
|
{
|
|
use Uuids;
|
|
use SoftDeletes;
|
|
|
|
public $table = 'pireps';
|
|
public $incrementing = false;
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
public $fillable
|
|
= [
|
|
'user_id',
|
|
'flight_id',
|
|
'aircraft_id',
|
|
'flight_time',
|
|
'route_code',
|
|
'route_leg',
|
|
'dpt_airport_id',
|
|
'arr_airport_id',
|
|
'fuel_used',
|
|
'source',
|
|
'level',
|
|
'route',
|
|
'notes',
|
|
'status',
|
|
'raw_data',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts
|
|
= [
|
|
'flight_time' => 'integer',
|
|
'level' => 'integer',
|
|
'fuel_used' => 'integer',
|
|
'source' => 'integer',
|
|
'status' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* Validation rules
|
|
*
|
|
* @var array
|
|
*/
|
|
public static $rules
|
|
= [
|
|
'dpt_airport_id' => 'required',
|
|
'arr_airport_id' => 'required',
|
|
];
|
|
|
|
/**
|
|
* Foreign Keys
|
|
*/
|
|
public function aircraft()
|
|
{
|
|
return $this->belongsTo('App\Models\Aircraft', 'aircraft_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 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 user()
|
|
{
|
|
return $this->belongsTo('App\Models\User', 'user_id');
|
|
}
|
|
|
|
}
|