@extends('layouts.app') @section('title', (\App\Models\Setting::get('site_name') ?: 'My Website') . ' - ' . ($package->seo_title ?: \App\Models\Setting::get('seo_packages_title') ?: $package->title) ) @section('content') @push('scripts') @if($package) @endif @endpush
@if ($package->main_image) {{ $package->title }} @else
@endif
{{ ucfirst($package->category) }}

{{ $package->title }}

{{ $package->destination }}
{{ $package->duration_days }} Days
{{ $package->min_people }}-{{ $package->max_people }} Pax

About This Package

{{ $package->description }}

@if ($package->itinerary)

Itinerary

{!! nl2br(e($package->itinerary)) !!}

@endif
@if ($package->highlights && count($package->highlights) > 0)

Highlights

    @foreach ($package->highlights as $highlight)
  • {{ $highlight }}
  • @endforeach
@endif @if ($package->inclusions && count($package->inclusions) > 0)

Included

    @foreach ($package->inclusions as $inclusion)
  • {{ $inclusion }}
  • @endforeach
@endif
@if ($package->exclusions && count($package->exclusions) > 0)

Not Included

    @foreach ($package->exclusions as $exclusion)
  • {{ $exclusion }}
  • @endforeach
@endif @if ($package->what_to_bring)

What to Bring

{{ $package->what_to_bring }}

@endif
@if ($package->meeting_point)

Meeting Point

{{ $package->meeting_point }}

@endif
@if ($package->has_discount)
Save {{ $package->discount_percentage }}%
{{ $package->formatted_discount_price }}
{{ $package->formatted_price }}
@else
Price From
{{ $package->formatted_price }}
@endif
Per Person
@if ($package->is_available) Book Now @else @endif
@if ($package->is_available) {{ $package->available_slots_count }} slots available @else Fully Booked @endif

Quick Info

Difficulty {{ ucfirst($package->difficulty_level) }}
@if ($package->accommodation_type)
Stay {{ $package->accommodation_type }}
@endif @if ($package->transportation)
Transport {{ $package->transportation }}
@endif
Category {{ ucfirst($package->category) }}

Need Help?

Have questions about this package? We're here to help!

@if ($relatedPackages->count() > 0) @endif
@endsection