#48 Model/relationships for custom flight fields
This commit is contained in:
@@ -63,6 +63,10 @@ class Flight extends Model
|
||||
'arr_airport_id' => 'required',
|
||||
];
|
||||
|
||||
/**
|
||||
* Relationship
|
||||
*/
|
||||
|
||||
public function airline()
|
||||
{
|
||||
return $this->belongsTo('App\Models\Airline', 'airline_id');
|
||||
@@ -83,6 +87,11 @@ class Flight extends Model
|
||||
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');
|
||||
|
||||
Reference in New Issue
Block a user