phpvms/app/Models/Subfleet.php
2017-07-05 09:55:36 -05:00

68 lines
1.2 KiB
PHP

<?php
namespace App\Models;
use Eloquent as Model;
/**
* Class Subfleet
* @package App\Models
*/
class Subfleet extends Model
{
public $table = 'subfleets';
protected $dates = ['deleted_at'];
public $fillable = [
'airline_id',
'name',
'type',
'fuel_type',
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'airline_id' => 'integer',
'fuel_type' => 'integer',
];
/**
* Validation rules
*
* @var array
*/
public static $rules = [
];
public function airline()
{
return $this->belongsTo('App\Models\Airline', 'airline_id');
}
public function fares()
{
return $this->belongsToMany(
'App\Models\Fare',
'subfleet_fare'
)->withPivot('price', 'cost', 'capacity');
}
public function flights()
{
return $this->belongsToMany('App\Models\Flight', 'subfleet_flight');
}
public function ranks()
{
return $this->belongsToMany(
'App\Models\Ranks',
'subfleet_rank'
)->withPivot('acars_pay', 'manual_pay');
}
}