@extends('layouts.app') @section('title', $metaTitle) @section('content') @foreach($schemas as $schema) @endforeach

{{ $page->title }}

{{ $page->summary }}

Policy Version v{{ $page->version }}
Effective Date {{ $page->effective_date ? $page->effective_date->format('F d, Y') : 'June 01, 2026' }}
Last Updated {{ $page->last_updated_at ? $page->last_updated_at->format('F d, Y') : 'June 01, 2026' }}
Approved & Live
@foreach($page->sections as $index => $section)

{{ $section->heading }}

@php $bodyText = $section->body; // Injecting dynamic suite rates $bodyText = str_replace('[1BR_RATE]', '₦' . $rates['1 Bedroom Master Suite'], $bodyText); $bodyText = str_replace('[2BR_RATE]', '₦' . $rates['2 Bedroom Luxury Apartment'], $bodyText); $bodyText = str_replace('[3BR_RATE]', '₦' . $rates['3 Bedroom Luxury Apartment'], $bodyText); $bodyText = str_replace('[4BR_RATE]', '₦' . $rates['4 Bedroom Luxury Apartment'], $bodyText); @endphp {!! $bodyText !!}
@endforeach

Submit a Refund Request

@if(session('success'))

{{ session('success') }}

@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Cancellation & Refund FAQs

@foreach($faqs as $faqIndex => $faq)
{{ $faq->answer }}
@endforeach

Need Help with a Cancellation or Refund Request?

Contact Kevron Suites and Apartments with your booking reference so our team can review your cancellation, modification or refund request according to the applicable policy.

Section link copied to clipboard.
@endsection