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

{{ $page->title }}

{{ $page->summary ?? 'Learn how Kevron Suites and Apartments collects, uses, protects and manages personal information when you use our website, make a booking, submit an enquiry, access your guest account or stay at our apartments.' }}

Data privacy Secure booking Guest account protection Transparent data use Privacy rights
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 Data Privacy Request

@if(session('success'))

{{ session('success') }}

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

Data Privacy FAQs

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

Need Help with a Privacy Question?

Contact Kevron Suites and Apartments if you have questions about how your personal data is collected, used, stored or protected.

Section link copied to clipboard.
@endsection