2017-06-18 06:25:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Eloquent as Model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Flight
|
|
|
|
*
|
|
|
|
* @package App\Models
|
|
|
|
*/
|
|
|
|
class Flight extends Model
|
|
|
|
{
|
|
|
|
public $table = 'flights';
|
|
|
|
|
|
|
|
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' => 'string',
|
|
|
|
'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',
|
|
|
|
];
|
|
|
|
|
2017-06-20 00:50:25 +08:00
|
|
|
public function airline()
|
|
|
|
{
|
2017-06-24 06:38:32 +08:00
|
|
|
return $this->belongsTo('App\Models\Airline', 'airline_id');
|
2017-06-20 00:50:25 +08:00
|
|
|
}
|
|
|
|
|
2017-06-18 06:25:36 +08:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2017-06-24 06:33:18 +08:00
|
|
|
public function subfleets()
|
2017-06-18 06:25:36 +08:00
|
|
|
{
|
2017-06-24 06:33:18 +08:00
|
|
|
return $this->belongsToMany('App\Models\Subfleet', 'subfleet_flight');
|
2017-06-18 06:25:36 +08:00
|
|
|
}
|
|
|
|
}
|