@extends('layouts.app') @section('title', (\App\Models\Setting::get('site_name') ?: 'My Website') . ' - ' . (\App\Models\Setting::get('seo_packages_title') ?: 'Browse Packages') ) @section('content')

🌟 Discover Amazing Destinations

Find your perfect adventure from our curated selection of tourism packages

@if ($packages->count() > 0)
@foreach ($packages as $package)
{{ $package->title }} @if ($package->is_featured)
Featured
@endif @if ($package->has_discount) @endif
{{ ucfirst($package->category) }}

{{ $package->title }}

{{ $package->description }}

@for($i = 0; $i < 5; $i++) @endfor
({{ $package->booked_count }} bookings)
{{ $package->duration_days }} Days {{ $package->destination }} {{ $package->min_people }}-{{ $package->max_people }} Pax
@if($package->has_discount)
{{ $package->formatted_price }}
{{ $package->formatted_discount_price }}
@else
From
{{ $package->formatted_price }}
@endif
@if ($package->is_available) @else @endif
@endforeach
{{ $packages->links() }}
@else

No packages found

Try adjusting your filters or search terms

Clear Filters
@endif
@endsection