@extends('frontend.layouts.master2') @section('title') Tours @endsection @push('styles') @endpush @section('main-content')
banner) && $tourtag->banner) data-background="{{ Storage::url($tourtag->banner) }}" @else data-background="{{ asset('frontend/assets/images/tours_page.jpg') }}" @endif>

{{$tourtag->title??''}} Tours Packages

Home {{$tourtag->title??''}} Tours Packages
@if(isset($search_context['has_date_filter']) && $search_context['has_date_filter'])
Search Results

Showing tours available from {{ \Carbon\Carbon::parse($search_context['start_date'])->format('M d, Y') }} to {{ \Carbon\Carbon::parse($search_context['end_date'])->format('M d, Y') }}

Found {{ is_countable($tours) ? count($tours) : $tours->count() }} available tour(s) for your selected dates
@endif
@if($tours) @foreach($tours as $tour)
{{$tour->title}}
${{$tour->price}} per Person
${{$tour->price_per_child}} per Child

{{$tour->tags}}

@if($tour->availability_type === 'year_round') Available Year Round @elseif($tour->availability_type === 'seasonal') Seasonal Availability @elseif($tour->availability_type === 'custom') Limited Availability @endif @if(isset($search_context['has_date_filter']) && $search_context['has_date_filter']) @if($tour->isAvailableForDateRange($search_context['start_date'], $search_context['end_date'])) Available for selected dates @endif @endif
{{-- --}} {{$tour->number_of_days}} {{$tour->number_of_days == 1 ? 'day' : 'days'}}
@endforeach @endif
@endsection