@php $labels = ['Departure', 'Return', 'Segment 3', 'Segment 4']; // Extendable for more segments @endphp @if (!empty($flights) && !isset($flights['error']))
@foreach ($flights[0]['journeys'] as $index => $journey)

{{ $labels[$index] ?? 'Flight Segment' }}

{{ $journey['segments'][0]['origin'] }} → {{ $journey['segments'][last(array_keys($journey['segments']))]['destination'] }}

@foreach ($flights as $flightIndex => $flight)

@endforeach
@endforeach
Show more flights
@else

Pakistan International Airlines flights not available

@endif