@extends('layouts.app') @section('title', 'Frequently Asked Questions | Kevron Suites') @push('scripts') @php $faqList = []; foreach($categories as $category) { foreach($category->faqs as $faq) { $faqList[] = [ '@type' => 'Question', 'name' => $faq->question, 'acceptedAnswer' => [ '@type' => 'Answer', 'text' => $faq->answer ] ]; } } @endphp @endpush @section('content')
Help Center

Frequently Asked Questions

Have questions about your stay, pricing rules, or airport pickup? Find answers to our most popular questions here.

@foreach($categories as $category) @if($category->faqs->count() > 0)
{{ $category->name }}
@foreach($category->faqs as $faq)
{{ $faq->answer }}
@endforeach
@endif @endforeach

Still need help?

Our executive concierge team is available 24/7 to answer your enquiries.

Contact Concierge
@endsection