@extends('public.layouts.guest') @section('nav_explore', 'text-teal-700 font-semibold') @section('nav_attractions', 'text-teal-700 font-semibold bg-teal-50/50') @section('title', 'Explore Cagayan de Oro — ' . \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') . ' in Cagayan de Oro — adventure, dining, shopping and landmarks.') @section('content')

Explore CDO

Things to Do Nearby

Discover the best of Cagayan de Oro — 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