phpvms/app/Models/Subfleet.php

94 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
use App\Interfaces\Model;
use App\Models\Enums\AircraftStatus;
use App\Models\Traits\ExpensableTrait;
/**
* Class Subfleet
2018-03-21 05:11:24 +08:00
* @property int id
* @property string type
* @property string ground_handling_multiplier
* @package App\Models
*/
class Subfleet extends Model
{
use ExpensableTrait;
public $table = 'subfleets';
protected $fillable = [
'airline_id',
2017-07-05 22:55:36 +08:00
'type',
'name',
2017-07-05 22:55:36 +08:00
'fuel_type',
'ground_handling_multiplier',
'cargo_capacity',
'fuel_capacity',
'gross_weight',
];
protected $casts = [
'airline_id' => 'integer',
'fuel_type' => 'integer',
'ground_handling_multiplier' => 'float',
'cargo_capacity' => 'float',
'fuel_capacity' => 'float',
'gross_weight' => 'float',
];
protected static $rules = [
'type' => 'required|unique',
'name' => 'required',
'ground_handling_multiplier' => 'nullable|numeric',
2017-12-31 04:37:10 +08:00
];
/**
* @param $type
*/
public function setTypeAttribute($type)
{
$type = str_replace(' ', '-', $type);
$type = str_replace(',', '', $type);
$this->attributes['type'] = $type;
}
/**
* Relationships
*/
/**
* @return $this
*/
public function aircraft()
{
return $this->hasMany(Aircraft::class, 'subfleet_id')
->where('status', AircraftStatus::ACTIVE);
}
public function airline()
{
return $this->belongsTo(Airline::class, 'airline_id');
}
2017-06-25 00:09:27 +08:00
public function fares()
{
2018-01-08 23:22:12 +08:00
return $this->belongsToMany(Fare::class, 'subfleet_fare')
->withPivot('price', 'cost', 'capacity');
2017-06-25 00:09:27 +08:00
}
public function flights()
{
2018-03-21 05:11:24 +08:00
return $this->belongsToMany(Flight::class, 'flight_subfleet');
}
public function ranks()
{
2018-01-08 23:22:12 +08:00
return $this->belongsToMany(Rank::class, 'subfleet_rank')
->withPivot('acars_pay', 'manual_pay');
}
}