{{ optional($flight->airline)->code.' '.$flight->flight_number }}
|
@if(isset($type) && $type === 'arr' || !isset($type))
{{ $flight->dpt_airport->full_name ?? $flight->dpt_airport_id }}
|
@endif
@if(isset($type) && $type === 'dep' || !isset($type))
{{ $flight->arr_airport->full_name ?? $flight->arr_airport_id }}
|
@endif
{{ DT_FormatScheduleTime($flight->dpt_time) }} |
{{ DT_FormatScheduleTime($flight->arr_time) }} |
@endforeach