More $pirep->ident usage fixes (#1353)

* Fix idents with double code

* Fix ident usage

* Fix ident usage

* Fix ident usage
This commit is contained in:
B.Fatih KOZ
2021-11-16 19:39:47 +03:00
committed by GitHub
parent 4e7149a51c
commit b9c29fbe08
4 changed files with 7 additions and 7 deletions

View File

@@ -55,9 +55,9 @@ class PirepSubmitted extends Notification implements ShouldQueue
return null;
}
$title = 'Flight '.$pirep->airline->code.$pirep->ident.' Filed';
$title = 'Flight '.$pirep->ident.' Filed';
$fields = [
'Flight' => $pirep->airline->code.$pirep->ident,
'Flight' => $pirep->ident,
'Departure Airport' => $pirep->dpt_airport_id,
'Arrival Airport' => $pirep->arr_airport_id,
'Equipment' => $pirep->aircraft->ident,