{{-- In your main layout head --}}
@include('website.layouts.header')
@if(isset($package) && !empty($package))
{{ $package->agency_name ?? 'Travel Agency' }}
{{ $package->title ?? 'Untitled' }}
@if(!empty($package->duration_days) || !empty($package->duration_nights))

@if(!empty($package->duration_days)) {{ $package->duration_days }} Days @endif @if(!empty($package->duration_nights)) {{ $package->duration_nights }} Nights @endif

@endif

Group: {{ $package->group_min ?? 'N/A' }} - {{ $package->group_max ?? 'N/A' }} People

{{ $package->destination->name ?? 'N/A' }}

Information

{{ $package->description ?? 'No description available.' }}

Tour Gallery
@forelse($package->images->take(3) as $image) @php $imageRaw = $image->image_path ?? ''; $imagePaths = json_decode($imageRaw, true); $imagePath = is_array($imagePaths) ? $imagePaths[0] ?? '' : trim($imageRaw, '\"'); @endphp @if(!empty($imagePath)) @endif @empty

No images available.

@endforelse

Tour Plan
@if($regions->count())
@endif
    @forelse($package->itineraries->sortBy('day_number') as $plan)
  • Day {{ $plan->day_number }}{{ $plan->title ? ' - ' . $plan->title : '' }}
    {{ $plan->description ?? '' }}
    @php $daySights = $package->sightseeings->where('day_number', $plan->day_number); @endphp @if($daySights->count())
    Sightseeings:
      @foreach($daySights as $sight) @php $imagePaths = is_array($sight->image_path) ? $sight->image_path : json_decode($sight->image_path ?? '[]', true); $firstImage = is_array($imagePaths) ? ($imagePaths[0] ?? null) : null; @endphp
    • {{ $sight->location }}: {{ $sight->description }} @if($firstImage)
      @endif
    • @endforeach
    @endif
  • @empty
  • No tour plan available.

  • @endforelse
Highlights
{!! $package->highlights ?? 'No highlights available.' !!}
Departure

{{ $package->departure_point ?? 'Not specified' }}

Departure Time

{{ $package->departure_time ?? 'Not specified' }}

Departure Date

{{ $package->departure_date ? \Carbon\Carbon::parse($package->departure_date)->format('d M Y') : 'Not specified' }}

Return Date

{{ $package->return_date ? \Carbon\Carbon::parse($package->return_date)->format('d M Y') : 'Not specified' }}

Return Time

{{ $package->return_time ?? 'Not specified' }}

Dress Code

{{ $package->dress_code ?? 'Not specified' }}

Price Includes @php $includes = json_decode($package->price_includes ?? '[]', true); @endphp @if(!empty($includes))
    @foreach($includes as $item)
  • {{ is_array($item) ? json_encode($item) : $item }}
  • @endforeach
@else

Not specified

@endif
Price Excludes @php $excludes = json_decode($package->price_excludes ?? '[]', true); @endphp @if(!empty($excludes))
    @foreach($excludes as $item)
  • {{ is_array($item) ? json_encode($item) : $item }}
  • @endforeach
@else

Not specified

@endif
Notes

{!! $package->notes ?? 'No notes available.' !!}

@if($package->sections && $package->sections->count())
@foreach($package->sections as $section)

{{ $section->title ?? $section->heading }}

{{ $section->description }}

@endforeach
@else

No terms & conditions available.

@endif

{{ $package->extra_info ?? '' }}

Departure

{{ $package->departure_point ?? 'Not specified' }}

Departure Time

{{ $package->departure_time ?? 'Not specified' }}

Return Time

{{ $package->return_time ?? 'Not specified' }}

Dress Code

{{ $package->dress_code ?? 'Not specified' }}

Price Includes @php $includes = json_decode($package->price_includes ?? '[]', true); @endphp @if(!empty($includes))
    @foreach($includes as $item)
  • {{ is_array($item) ? json_encode($item) : $item }}
  • @endforeach
@else

Not specified

@endif
Price Excludes @php $excludes = json_decode($package->price_excludes ?? '[]', true); @endphp @if(!empty($excludes))
    @foreach($excludes as $item)
  • {{ is_array($item) ? json_encode($item) : $item }}
  • @endforeach
@else

Not specified

@endif
@else

No Result Found

Please try again later or choose another tour.

@endif

@for($i = 0; $i < 5; $i++) @endfor

We Provide Top Destinations Especially For You — Book Now and Enjoy!

Call Now

858997921

Call us, it's toll-free.

Testimonials

Travelers Reviews

@include('website.layouts.footer')