@extends('layouts.inner') @section('title', $destination->meta_title ?? $destination->name . ' — Explore Destinations') @section('title') {{ $destination->meta_title ?? '' }} @endsection @section('meta_description') {{ $destination->meta_description ?? '' }} @endsection @section('meta_keywords') {{ $destination->meta_keywords ?? '' }} @endsection @section('content') {{-- ========================= HERO BANNER ========================= --}}
@if($destination->banner)
@endif
@if($destination->heading) Featured Destination @endif

{{ $destination->name }}

Explore Packages
{{-- ========================= /HERO BANNER ========================= --}} {{-- ========================= STICKY NAV — only show links with content ========================= --}}
{{-- ========================= /STICKY NAV ========================= --}}
{{-- ============ MAIN CONTENT ============ --}}
{{-- OVERVIEW --}} @if($destination->introduction)

{{ $destination->detail_heading ?? 'About ' . $destination->name }}

@if($destination->detail_subheading)

{{ $destination->detail_subheading }}

@endif
{!! $destination->introduction !!}
@endif @if($destination->introduction && $destination->experience)
@endif {{-- EXPERIENCE --}} @if($destination->experience)

What to Experience

{!! $destination->experience !!}
@endif @if($destination->experience && $destination->weather)
@endif {{-- WEATHER --}} @if($destination->weather)

Best Time to Visit

{!! $destination->weather !!}
@endif @if($destination->weather && $destination->hotel)
@endif {{-- ACCOMMODATION --}} @if($destination->hotel)

Where to Stay

{!! $destination->hotel !!}
@endif @if($destination->hotel && $destination->transportation)
@endif {{-- TRANSPORTATION --}} @if($destination->transportation)

Getting Around

{!! $destination->transportation !!}
@endif @if($destination->transportation && $destination->culture)
@endif {{-- CULTURE --}} @if($destination->culture)

Culture & Local Life

{!! $destination->culture !!}
@endif
{{-- ============ /MAIN CONTENT ============ --}} {{-- ============ SIDEBAR ============ --}}
{{-- Quick Info Card --}}
@if($destination->photo)
{{ $destination->name }}
@endif
{{ $destination->name }}
@if($destination->short_description)

{{ Str::limit($destination->short_description, 100) }}

@endif
{{ $packages->count() }} Package{{ $packages->count() != 1 ? 's' : '' }} Available
View All Packages
{{-- Featured Package Teaser --}} @if($packages->where('is_featured', 1)->first()) @php $featured = $packages->where('is_featured', 1)->first(); @endphp
@if($featured->photo)
{{ $featured->name }} ⭐ Featured
@endif
{{ $featured->name }}
@if($featured->duration) {{ $featured->duration }} @endif
Starting from
{{ $featured->price ? 'AED ' . number_format($featured->price, 0) : 'Contact Us' }}
View
@endif {{-- Need Help Card --}}
✈️
Need Expert Guidance?

Our certified travel specialists are available to craft your perfect itinerary.

Call Now
{{-- ============ /SIDEBAR ============ --}}
{{-- ========================= AVAILABLE PACKAGES ========================= --}}
@if($destination->package_heading)

{{ $destination->package_heading }}

@else

Holiday Packages — {{ $destination->name }}

@endif @if($destination->package_subheading)

{{ $destination->package_subheading }}

@endif
@if($packages->isEmpty())
🗺️
No packages available for this destination at the moment.

Please check back soon or contact our team for custom packages.

@else
@foreach($packages as $pkg)
@if($pkg->photo) {{ $pkg->name }} @else
@endif @if($pkg->is_featured) ⭐ Featured @endif @if($pkg->duration) {{ $pkg->duration }} @endif
{{ $pkg->name }}
@if($pkg->location)

{{ $pkg->location }}

@endif @if($pkg->short_description)

{{ Str::limit($pkg->short_description, 90) }}

@endif @if($pkg->tour_start_date)
{{ \Carbon\Carbon::parse($pkg->tour_start_date)->format('d M Y') }} @if($pkg->tour_end_date) — {{ \Carbon\Carbon::parse($pkg->tour_end_date)->format('d M Y') }} @endif
@endif @if($pkg->last_booking_date)
Book before {{ \Carbon\Carbon::parse($pkg->last_booking_date)->format('d M Y') }}
@endif
Starting from
{{ $pkg->price ? 'AED ' . number_format($pkg->price, 0) : 'Contact Us' }} @if($pkg->price) / person @endif
View Details
@endforeach
@endif
{{-- ========================= /AVAILABLE PACKAGES ========================= --}} {{-- ========================= TRUST STRIP ========================= --}}
🛡️
100% Secure Booking

Your data & payments are fully protected

🏆
Award-Winning Service

Recognised globally for excellence

📞
24/7 Expert Support

Dedicated specialists, always available

✈️
10,000+ Happy Travellers

Trusted by families, corporates & VIPs

{{-- ========================= /TRUST STRIP ========================= --}} @endsection @push('styles') @endpush @push('scripts') @endpush