@extends('public.layouts.guest') @section('nav_offers', 'text-teal-700 font-semibold') @section('title', 'Special Offers — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('meta_description', 'Current promotions and special offers at ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO') . ' — book direct for the best deals in Cagayan de Oro.') @section('content')

Deals

Special Offers

Book direct and save — exclusive promotions you won't find on other sites.

@if($promotions->isEmpty())

No active promotions right now — but our best rates are always available when you book direct.

Check Availability
@else
@foreach($promotions as $p)
@if($p->image_path) {{ $p->title }} @else
@endif @if($p->badge_label) {{ $p->badge_label }} @endif

{{ $p->title }}

@if($p->subtitle)

{{ $p->subtitle }}

@endif @if($p->body)

{{ $p->body }}

@endif
@if($p->price_from)

From ₱{{ number_format($p->price_from, 0) }}

@endif @if($p->promo_code)
Use code {{ $p->promo_code }}
@endif @if($p->valid_until)

Ends {{ $p->valid_until->format('M j, Y') }}

@endif Book This Offer
@endforeach
@endif
@endsection