{{ __('frontend.search_flights') }}

@php $triptype = request('triptype'); @endphp
@php $slices = request('slices'); @endphp
path() === 'flights' && count(request()->query()) === 0) style="display:none" @endif>
@if (isset($error))
{{ $error }}
@else

Showing {{ count($flights ?? []) }} Search Results

@if (count($flights ?? []) > 0)
@foreach ($flights as $index => $flight)
@foreach ($flight['slices'] as $slice)
{{ $slice['origin']['city_name'] ?? '' }}
{{ date('D, M j, Y - h:i A', strtotime($slice['segments'][0]['departing_at'])) }}
{{ $slice['destination']['city_name'] ?? '' }}
{{ date('D, M j, Y - h:i A', strtotime($slice['segments'][0]['arriving_at'])) }}
@endforeach
{{ $flight['slices'][0]['segments'][0]['passengers'][0]['cabin_class_marketing_name'] ?? '' }} {{ $flight['slices'][0]['segments'][0]['duration'] ?? '' }}

{{ $flight['total_amount'] ?? '' }} {{ $flight['total_currency'] ?? '' }}

Total Fare
@endforeach
@if (count($flights) > 6)
@endif @else
No flights found for your search criteria.
@endif @endif
@if (null !== ($arilines = moduleF(4)))
    @foreach ($arilines as $airline)
  • @endforeach
@endif