a952071cb4
* Update SubFleet Model Add hub_id for storing subfleet's main base/hub airport, define a relationship with airport model to get details of the base/hub airport when needed. * Update Admin / SubFleetController Added the ability to read and pass hub airports to admin view for create/edit options. * Update Admin/SubFleets.fields.blade Added the dropdown for adding/editing main base/hub of a subfleet. * Add migration for the hub_id column Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com> Co-authored-by: Nabeel Shahzad <nshahzad@live.com>
108 lines
2.6 KiB
PHP
108 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use App\Models\Enums\AircraftStatus;
|
|
use App\Models\Traits\ExpensableTrait;
|
|
use App\Models\Traits\FilesTrait;
|
|
|
|
/**
|
|
* @property int id
|
|
* @property string type
|
|
* @property string name
|
|
* @property int airline_id
|
|
* @property int hub_id
|
|
* @property string ground_handling_multiplier
|
|
* @property Fare[] fares
|
|
* @property float cost_block_hour
|
|
* @property float cost_delay_minute
|
|
* @property Airline airline
|
|
* @property Airport hub
|
|
*/
|
|
class Subfleet extends Model
|
|
{
|
|
use ExpensableTrait;
|
|
use FilesTrait;
|
|
|
|
public $fillable = [
|
|
'airline_id',
|
|
'hub_id',
|
|
'type',
|
|
'name',
|
|
'fuel_type',
|
|
'cost_block_hour',
|
|
'cost_delay_minute',
|
|
'ground_handling_multiplier',
|
|
'cargo_capacity',
|
|
'fuel_capacity',
|
|
'gross_weight',
|
|
];
|
|
|
|
public $table = 'subfleets';
|
|
|
|
public $casts = [
|
|
'airline_id' => 'integer',
|
|
'turn_time' => 'integer',
|
|
'cost_block_hour' => 'float',
|
|
'cost_delay_minute' => 'float',
|
|
'fuel_type' => 'integer',
|
|
'ground_handling_multiplier' => 'float',
|
|
'cargo_capacity' => 'float',
|
|
'fuel_capacity' => 'float',
|
|
'gross_weight' => 'float',
|
|
];
|
|
|
|
public static $rules = [
|
|
'type' => 'required',
|
|
'name' => 'required',
|
|
'hub_id' => 'nullable',
|
|
'ground_handling_multiplier' => 'nullable|numeric',
|
|
];
|
|
|
|
/**
|
|
* @param $type
|
|
*/
|
|
public function setTypeAttribute($type)
|
|
{
|
|
$type = str_replace([' ', ','], ['-', ''], $type);
|
|
$this->attributes['type'] = $type;
|
|
}
|
|
|
|
/**
|
|
* Relationships
|
|
*/
|
|
public function aircraft()
|
|
{
|
|
return $this->hasMany(Aircraft::class, 'subfleet_id')
|
|
->where('status', AircraftStatus::ACTIVE);
|
|
}
|
|
|
|
public function airline()
|
|
{
|
|
return $this->belongsTo(Airline::class, 'airline_id');
|
|
}
|
|
|
|
public function hub()
|
|
{
|
|
return $this->hasOne(Airport::class, 'id', 'hub_id');
|
|
}
|
|
|
|
public function fares()
|
|
{
|
|
return $this->belongsToMany(Fare::class, 'subfleet_fare')
|
|
->withPivot('price', 'cost', 'capacity');
|
|
}
|
|
|
|
public function flights()
|
|
{
|
|
return $this->belongsToMany(Flight::class, 'flight_subfleet');
|
|
}
|
|
|
|
public function ranks()
|
|
{
|
|
return $this->belongsToMany(Rank::class, 'subfleet_rank')
|
|
->withPivot('acars_pay', 'manual_pay');
|
|
}
|
|
}
|