@extends('public.layouts.guest') @section('title', \App\Models\WebsiteContent::get('seo','meta_title','Parkview Hotel CDO')) @section('nav_home', 'text-teal-700 font-semibold') @section('content') {{-- ===== HERO SLIDER ===== --}}
{{-- Slide backgrounds (stacked, fade between them) --}} {{-- Content layer --}}
{{-- Per-slide text (fixed-height container so booking widget doesn't jump) --}}
{{-- Booking widget --}} @if($bookingEnabled)
@else Contact Us to Book @endif {{-- Slide indicator dots --}}
{{-- Scroll indicator --}}
{{-- Prev / Next arrows --}}
{{-- ===== ABOUT STRIP ===== --}}

Our Story

{{ $hero['about_title'] ?? 'Your Home Away From Home' }}

{{ $hero['about_text'] ?? '' }}

Learn More About Us
@if(!empty($hero['about_image'])) About {{ $propName }} @else

Upload a photo via Website CMS

@endif
{{-- ===== FEATURED ROOMS ===== --}} @if(!empty($featuredRooms) && count($featuredRooms))

Accommodations

Our Rooms & Suites

From budget-friendly rooms to spacious suites — find the perfect space for your stay.

@foreach($featuredRooms as $room)
{{-- Room photo or placeholder --}}
@if($room->photo) {{ $room->type }} @else
@endif
From ₱{{ number_format($room->rate) }}/night

{{ $room->type }}

Up to {{ $room->max_pax }} guests · {{ $room->beds }}

View Details @if($bookingEnabled) Book Now @endif
@endforeach
@endif {{-- ===== AMENITIES ===== --}} @if(!empty($amenities))

Facilities

{{ $hero['amenities_title'] ?? 'Everything You Need' }}

@foreach($amenities as $amenity)
{{ $amenity }}
@endforeach
@endif {{-- ===== NEWSLETTER ===== --}}

Stay in the Loop

Get exclusive deals, local tips, and hotel news delivered to your inbox.

@if(session('newsletter_success'))
{{ session('newsletter_success') }}
@elseif(session('newsletter_info'))
{{ session('newsletter_info') }}
@else
@csrf
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif

No spam, unsubscribe anytime.

@endif
{{-- ===== CTA BANNER ===== --}} @if($bookingEnabled)

Ready to Book Your Stay?

Best rates guaranteed when you book directly with us.

Book Now — It's Free
@endif @endsection