@forelse ($destinations ?? [] as $destination)
{{ $destination->name }} @if($destination?->area)
{{ $destination?->area?->name ?? '' }}
@endif

{{ $destination->name }}

@if($destination->location_url) {{ $destination->full_address ?? 'N/A' }} @else {{ $destination->full_address ?? 'N/A' }} @endif

{{ Str::limit($destination->description, 200) }}

{{ $destination->tourPackages?->count() ?? 0 }} Packages
@empty
No tours found matching your criteria.
@endforelse