@extends('public.layouts.guest') @section('title', $type . ' — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('nav_rooms', 'text-teal-700 font-semibold') @section('content')
All Rooms

{{ $type }}

Starting from ₱{{ number_format($minRate) }} per night

{{-- Left: photos + details --}}
{{-- Photo gallery --}} @if($photos->count())
@foreach($photos as $i => $photo) {{ $photo->caption ?? $type }} @endforeach
@if($photos->count() > 1)
@foreach($photos as $i => $photo) @endforeach
@endif
@else

Photos coming soon

@endif {{-- Room info card --}}

Room Details

{{ $sample->max_pax }}

Max Guests

{{ $sample->beds }}

Bed Type

{{ $sample->sqm }}

Sq. Meters

{{ $sample->floor }}

Floor

@if(!empty($amenities))

Amenities

@foreach($amenities as $amenity)
{{ $amenity }}
@endforeach
@endif @if($sample->notes)

{{ $sample->notes }}

@endif
{{-- Right: booking card --}}

₱{{ number_format($minRate) }}

per night

@if($bookingEnabled)
@else Contact to Book @endif
Best rate when booking direct
Free cancellation enquiries welcome
{{-- Other rooms --}} @if($otherTypes->count())

Other Room Types

@foreach($otherTypes as $other) {{ $other->type }} ₱{{ number_format($other->rate) }} @endforeach
@endif
@endsection