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

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

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

{{ __('frontend.found_tours', ['count' => $tours->total()]) }}

@forelse($tours as $tour)
@if($tour->image) {{ $tour->getTranslatedTitle() }} @else {{ $tour->getTranslatedTitle() }} @endif
@if($tour->extra_field_3) {{ $tour->getTranslatedExtraField(3) }} {{ __('frontend.days') }} @endif @if($tour->departureCountry) {{ $tour->departureCity->name ?? 'N/A' }} @endif
@if($tour->tourType)
{{ $tour->tourType->title }}
@endif
@if($tour->extra_field_1)
{{ __('frontend.starts') }}: {{ date('d M Y', strtotime($tour->getTranslatedExtraField(1))) }}
@endif @if($tour->extra_field_2)
{{ __('frontend.ends') }}: {{ date('d M Y', strtotime($tour->getTranslatedExtraField(2))) }}
@endif @if($tour->extra_field_4)
{{ $tour->getTranslatedExtraField(4) }} {{ __('frontend.nights') }}
@endif
@empty

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

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

{{ __('frontend.view_all_tours') }}
@endforelse
@if($tours->hasPages())

{{ __('frontend.showing_tours', ['first' => $tours->firstItem() ?? 0, 'last' => $tours->lastItem() ?? 0, 'total' => $tours->total()]) }}

@endif
@push('js') @endpush