phpvms/app/Models/Flight.php
2017-08-12 12:24:00 -05:00

102 lines
2.1 KiB
PHP

<?php
namespace App\Models;
use Eloquent as Model;
use App\Models\Traits\Uuids;
/**
* Class Flight
*
* @package App\Models
*/
class Flight extends Model
{
use Uuids;
public $table = 'flights';
public $incrementing = false;
protected $dates = ['deleted_at'];
public $fillable
= [
'airline_id',
'flight_number',
'route_code',
'route_leg',
'dpt_airport_id',
'arr_airport_id',
'alt_airport_id',
'route',
'dpt_time',
'arr_time',
'notes',
'active',
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts
= [
'flight_number' => 'integer',
'route_code' => 'string',
'route_leg' => 'string',
'route' => 'string',
'dpt_time' => 'string',
'arr_time' => 'string',
'notes' => 'string',
'active' => 'boolean',
];
/**
* Validation rules
*
* @var array
*/
public static $rules
= [
'flight_number' => 'required',
'dpt_airport_id' => 'required',
'arr_airport_id' => 'required',
];
/**
* Relationship
*/
public function airline()
{
return $this->belongsTo('App\Models\Airline', 'airline_id');
}
public function dpt_airport()
{
return $this->belongsTo('App\Models\Airport', 'dpt_airport_id');
}
public function arr_airport()
{
return $this->belongsTo('App\Models\Airport', 'arr_airport_id');
}
public function alt_airport()
{
return $this->belongsTo('App\Models\Airport', 'alt_airport_id');
}
public function fields()
{
return $this->hasMany('App\Models\FlightFields', 'flight_id');
}
public function subfleets()
{
return $this->belongsToMany('App\Models\Subfleet', 'subfleet_flight');
}
}