@extends('public.layouts.guest') @section('nav_explore', 'text-teal-700 font-semibold') @section('nav_faqs', 'text-teal-700 font-semibold bg-teal-50/50') @section('title', 'FAQ — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('meta_description', 'Answers to common questions about staying at ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO') . ' — check-in and check-out, payments, policies and more.') @if($faqs->count()) @push('jsonld') @endpush @endif @section('content')

Help Center

Frequently Asked Questions

Everything you need to know before your stay.

@if($faqs->isEmpty())
No FAQs published yet. Please check back soon.
@else @php $grouped = $faqs->groupBy(fn($f) => $f->category ?: 'General'); @endphp
@foreach($grouped as $category => $items)
@if($grouped->count() > 1)

{{ $category }}

@endif
@foreach($items as $faq)

{{ $faq->answer }}

@endforeach
@endforeach
@endif

Still have questions?

Contact Us
@endsection