@extends('public.layouts.guest') @section('nav_explore', 'text-teal-700 font-semibold') @section('nav_attractions', 'text-teal-700 font-semibold bg-teal-50/50') @php $attractionsCity = \App\Models\Setting::get('property_city', ''); @endphp @section('title', ($attractionsCity ? 'Explore ' . $attractionsCity : 'Attractions') . ' — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('meta_description', 'Top attractions and things to do near ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO') . ($attractionsCity ? ' in ' . $attractionsCity : '') . ' — adventure, dining, shopping and landmarks.') @section('content')

{{ $attractionsCity ? 'Explore ' . $attractionsCity : 'Explore the Area' }}

Things to Do Nearby

Discover the best of {{ $attractionsCity ?: 'the area' }} — all within reach of your stay.

@if($attractions->isEmpty())

Our local guide is coming soon.

@else
@foreach($attractions as $a)
@if($a->image_path) {{ $a->name }} @else
@endif @if($a->category){{ $a->category }}@endif

{{ $a->name }}

@if($a->distance_label)

{{ $a->distance_label }}

@endif @if($a->description)

{{ $a->description }}

@endif @if($a->map_url) View on map @endif
@endforeach
@endif
@endsection