@extends('layouts.site') @section('title', 'Destinations - Visit Sri Lanka 360') @php // hero background (use your existing path) $heroBg = asset('assets/img/hero/destinations.jpg'); @endphp @section('content') {{-- HERO (EXACT same as Tours hero style) --}}
{{-- overlays --}}
Explore Sri Lanka

Destinations

Explore Sri Lanka’s best places — beaches, mountains, culture, wildlife and hidden gems.

{{-- SUMMARY BAR (same positioning as Tours filter bar style) --}}
Total
{{ method_exists($destinations, 'total') ? $destinations->total() : $destinations->count() }} Destinations
Best for
Beaches • Hills • Wildlife
Plan
Browse • Save • Book
{{-- LIST --}}
@foreach($destinations as $d) @php $img = $d->cover_image ? asset('storage/' . ltrim($d->cover_image, '/')) : null; @endphp
@if($img) {{ $d->name }}
@else
@endif
{{ $d->type ? ucwords(str_replace('-', ' ', $d->type)) : 'Destination' }}
{{ $d->name }}
@if($d->excerpt)
{{ $d->excerpt }}
@endif
Explore
@endforeach
{{ $destinations->links() }}
@endsection