@extends('frontend.layouts.app') @section( 'title', ($roomType->meta_title ?: $roomType->name) .' | CCULB Resort' ) @section( 'meta_description', $roomType->meta_description ?: ( $roomType->short_description ?: 'Explore '.$roomType->name.' at CCULB Resort.' ) ) @section('content') @php $hasDiscount = $roomType->discount_price && $roomType->base_price && $roomType->discount_price < $roomType->base_price; $currentPrice = $hasDiscount ? $roomType->discount_price : $roomType->base_price; @endphp {{-- Room Hero --}}
@if ($roomType->featured_image) {{ $roomType->name }} @endif
Home Rooms & Suites {{ $roomType->name }}
@if ($roomType->small_title) {{ $roomType->small_title }} @else CCULB Resort Accommodation @endif

{{ $roomType->name }}

@if ($roomType->short_description)

{{ $roomType->short_description }}

@endif
@if ($roomType->maximum_guests) Capacity {{ $roomType->maximum_guests }} {{ $roomType->maximum_guests > 1 ? 'Guests' : 'Guest' }} @endif @if ($roomType->bed_type) Bed Type {{ $roomType->bed_type }} @endif @if ($roomType->room_size) Room Size {{ $roomType->room_size }} @endif @if ($roomType->view_type) View {{ $roomType->view_type }} @endif
{{-- Main Information --}}
About This Room

A Comfortable Resort Experience

@if ($roomType->description)
{!! nl2br(e($roomType->description)) !!}
@elseif ($roomType->short_description)

{{ $roomType->short_description }}

@endif @if ( is_array($roomType->amenities) && count($roomType->amenities) )
Included in Your Stay

Room Amenities

@foreach ($roomType->amenities as $amenity)
{{ $amenity }}
@endforeach
@endif
{{-- Booking Card --}}
{{-- Active Gallery --}} @if ($roomType->activeImages->isNotEmpty()) @endif {{-- Reservation CTA --}}
Experience CCULB Resort

Ready for a Peaceful Getaway?

Let our reservation team help you plan a comfortable and memorable resort stay.

Contact for Reservation
{{-- Related Rooms --}} @if ($relatedRoomTypes->isNotEmpty()) @endif @endsection @push('styles') @endpush