@extends('layout.master') @section('meta') @include('layout.partials.seo', [ 'title' => $tour->meta_title, 'description' => $tour->meta_description, 'keywords' => $tour->meta_keywords, 'image' => $tour->getFirstMediaUrlOrDefault(MediaHelper::TOUR_MEDIA_PATH, 'webp')['url'], 'schema' => $tour->schema ]) @endsection @section('content')

{{$tour->heading}}

@if(isset($tour->location) && !empty($tour->location))
{{$tour->location}}
@endif
@if(!empty($tour->rating) && $tour->rating > 0)

{{ __('general.excellent') }}

{{$tour->rating}}/5
@endif
@if(isset($tour->duration) && !empty($tour->duration))
{{__('tour.duration')}}

{{$tour->duration}}

@endif @if(isset($tour->tour_type) && !empty($tour->tour_type))
{{__('tour.tour_type')}}

{{$tour->type}}

@endif @if(isset($tour->runs) && !empty($tour->runs))
{{__('tour.runs')}}

{{$tour->runs}}

@endif @if(isset($tour->group_size) && !empty($tour->group_size))
{{__('tour.group_size')}}

{{$tour->group_size}}

@endif
@foreach($tour->getMedia(MediaHelper::TOUR_GALLERY_MEDIA_PATH) as $media)
{{ $media->img_alt }}
@endforeach
@foreach($tour->getMedia(MediaHelper::TOUR_GALLERY_MEDIA_PATH) as $media)
{{ $media->img_alt }}
@endforeach
@if(isset($tour->description) && !empty($tour->description))

{{__('tour.description')}}

{!! $tour->description !!}
@endif @if(isset($tour->notes) && !empty($tour->notes))

{{__('tour.notes')}}

{!! $tour->notes !!}
@endif @if(isset($tour->inclusion) && !empty($tour->inclusion))

{{__('tour.inclusion')}}

{!! $tour->inclusion !!}
@endif @if(isset($tour->exclusion) && !empty($tour->exclusion))

{{__('tour.exclusion')}}

{!! $tour->exclusion !!}
@endif @if($tour->itineraries->count())

{{__('tour.itinerary')}}

@foreach($tour->itineraries as $key=>$itinerary)
@if(!empty($itinerary->day) && $itinerary->day !== null)
{{__('tour.day')}} : {{ $itinerary->day }}
@endif
@if(!empty($itinerary->heading) && $itinerary->heading !== null)

@endif
{!! $itinerary->description !!}
@endforeach
@endif @if(isset($tour->pricing_notes) && !empty($tour->pricing_notes))

{{__('tour.pricing_notes')}}

{!! $tour->pricing_notes !!}
@endif @if(isset($tour->pricing) && count($tour->pricing))
@foreach($tour->pricing as $pricingRow) @endforeach
{{ $pricingRow['from'] ?? 'from' }} - {{ $pricingRow['to'] ?? 'to'}} {{ CurrencyHelper::get('price') }} {{ $pricingRow['price'] ?? '-'}} {{__('tour.per_person')}}
@endif @if(isset($tour->quick_tips) && !empty($tour->quick_tips))

{{__('tour.quick_tips')}}

@foreach($tour->quick_tips as $quick_tip) @endforeach
@endif
@if(!empty($tour->price_start_from) && !empty($tour->price_start_from) && $tour->price_start_from > 0)
{{__('tour.price_start_from')}}

{{ CurrencyHelper::display($tour->price_start_from) }}

@endif
@if(!empty($tour->map_link) && $tour->map_link !== null)

{{__('tour.maps')}}

{!! html_entity_decode($tour->map_link) !!}
@endif

{{__('tour.write_your_tour_reservation')}}

@livewire('reservation', ['tour' => $tour])
@if(isset($settings['message_to_the_client_title']) && !empty(JSONByLocale($settings['message_to_the_client_title'])))

{{JSONByLocale($settings['message_to_the_client_title'] ?? '') }}

{!!JSONByLocale($settings['message_to_the_client_description'] ?? '') !!}
@endif
{{-- review --}} @if(isset($reviews)) @include('tours.partials.section_reviews_tours') @endif
@include('tours.partials.section_related_tours') @include('tours.partials.section_articles_tours') @endsection