@extends('public.layouts.guest') @section('nav_explore', 'text-teal-700 font-semibold') @section('nav_policies', 'text-teal-700 font-semibold bg-teal-50/50') @section('title', 'Guest Policies — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('meta_description', 'Guest policies for ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO') . ' — Senior Citizen & PWD discounts, cancellation, house rules, and check-in/out times.') @section('content')

Good to Know

Guest Policies

Everything you should know before and during your stay.

@php $sections = [ 'senior_pwd' => ['Senior Citizen & PWD Discounts', 'M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'], 'check_in_out' => ['Check-in & Check-out', 'M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'], 'cancellation' => ['Cancellation Policy', 'M6 18L18 6M6 6l12 12'], 'house_rules' => ['House Rules', 'M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'], ]; $has = collect($sections)->keys()->first(fn ($k) => !empty($policies[$k])) !== null; @endphp @if(!$has)
Our detailed policies will be published here shortly. Please contact us for any questions.
@else
@foreach($sections as $key => [$label, $icon]) @if(!empty($policies[$key]))

{{ $label }}

{{ $policies[$key] }}

@endif @endforeach
@endif
@endsection