Fix SimBrief Controller | flight relationships (#1350)

* Update SimBriefController.php

Fix the fares relationship which was causing trouble when a flight had assigned fares

* Fix model name used in relationship

`Simbrief` should be `SimBrief`
This commit is contained in:
B.Fatih KOZ
2021-11-17 00:26:43 +03:00
committed by GitHub
parent b9c29fbe08
commit 4ea8357952
2 changed files with 2 additions and 2 deletions

View File

@@ -134,7 +134,7 @@ class Aircraft extends Model
public function simbriefs()
{
return $this->hasMany(Simbrief::class, 'aircraft_id');
return $this->hasMany(SimBrief::class, 'aircraft_id');
}
public function subfleet()