@php $features = $destination->features ?? []; $itinerary = $destination->itinerary ?? []; $inclusions = $destination->inclusions ?? []; $exclusions = $destination->exclusions ?? []; $packageCosts = $destination->package_costs ?? []; $pageTitle = $destination->meta_title ?: $destination->title . ' | Samarth Hospitality'; $pageDescription = $destination->meta_description ?: str(strip_tags($destination->description))->limit(160); @endphp {{ $pageTitle }} @if($destination->meta_description) @else @endif @if($destination->meta_keywords) @endif @include('partials.topcss')
@include('partials.topmenu')
{{ $destination->image_alt }}
@if($destination->durationDetail)
{{ $destination->durationDetail->name ?? '' }}
@endif @if($destination->location)
{{ $destination->location }}
@endif @if($destination->group_size)
{{ $destination->group_size }}
@endif @if($destination->tour_type)
{{ $destination->tour_type }}
@endif

{{ $destination->title }}

@if(count($amenities))
@foreach($amenities as $feature)
@if(!empty($feature->title))
{{ $feature->title }}
@endif @if(!empty($feature->subtitle))

{{ $feature->subtitle }}

@endif
@endforeach
@endif
Package Price :
@if($destination->sale_price_value > 0 && $destination->sale_price_value < $destination->price) ₹{{ $destination->formatted_pricing }} @endif {{ $destination->display_price }} Per Person
All Taxes Included

Tour Overview

{{ $destination->description }}

@if($destination->content)
{!! $destination->content !!}
@endif
@if(count($itinerary))

Days Wise Itinerary

@foreach($itinerary as $index => $day)
Day {{ $day['day'] ?? ($index + 1) }}

{{ $day['title'] ?? 'Day ' . ($index + 1) }}

@if(!empty($day['description']))
{!! $day['description'] !!}
@endif
@endforeach
@endif @if(count($inclusions))

Inclusions

    @foreach($inclusions as $inclusion)
  • {{ $inclusion }}
  • @endforeach
@endif @if(count($exclusions))

Exclusions

    @foreach($exclusions as $exclusion)
  • {{ $exclusion }}
  • @endforeach
@endif

Tour Enquiry

@csrf
@if(count($packageCosts)) @foreach($packageCosts as $costIndex => $validity) @php $rows = $validity['rows'] ?? []; @endphp @if(count($rows))

PACKAGE COST

{{ $validity['title'] ?? 'Rate Details' }}

@if(!empty($validity['from']) && !empty($validity['to']))

Valid from {{ \Carbon\Carbon::parse($validity['from'])->format('d M Y') }} to {{ \Carbon\Carbon::parse($validity['to'])->format('d M Y') }}

@endif
@foreach($rows as $row) @endforeach
Sl No No of Rooms Vehicle Used Cost Per Person Min Person Required Meal Plan
{{ $loop->iteration }} {{ $row['room_no'] ?? '-' }} {{ $row['vehicle'] ?? '-' }} @php $cost = $row['cost'] ?? '-'; @endphp @if($cost === '-' || $cost === '') - @elseif(str_contains((string) $cost, '₹')) {{ $cost }} @elseif(is_numeric($cost)) ₹{{ number_format((float) $cost) }} @else {{ $cost }} @endif {{ $row['person'] ?? '-' }} {{ $row['meal'] ?? '-' }}
@endif @endforeach @endif @if($relatedDestinations->isNotEmpty()) @endif @push('scripts') @endpush @include('partials.footer')