@extends('guest.layouts.auth') @section('title', 'Stay Explorer: ' . $booking->booking_reference . ' | Kevron Suites') @section('dashboard_content')
STAYS DETAILS EXPLORER

Reference: {{ $booking->booking_reference }}

{{ $booking->apartmentType->name }} in Ikeja

@if($booking->invoices->isNotEmpty()) Download Invoice @endif @if($booking->payments->isNotEmpty() && $booking->payments->first()->receipt_path) Download Receipt @endif

Stay Timeline Metrics

Check-In {{ Carbon\Carbon::parse($booking->check_in_date)->format('M d, Y') }}
Check-Out {{ Carbon\Carbon::parse($booking->check_out_date)->format('M d, Y') }}
Stays Duration {{ Carbon\Carbon::parse($booking->check_in_date)->diffInDays(Carbon\Carbon::parse($booking->check_out_date)) }} Nights
En-Suite status {{ str_replace('_', ' ', $booking->status) }}

En-Suite Special Requests

@csrf

Airport Pickup Request

@csrf

Car Rental Coordination

@csrf

Extend or Modify Stay

@csrf

Request Stay Cancellation

@csrf

Submit Stay Star Rating

@csrf

Stays Bill summary

Nightly Charge ₦{{ number_format($booking->base_price, 2) }}
Add-On Services ₦{{ number_format($booking->add_ons_price, 2) }}
Service Charge ({{ \App\Models\Setting::getVal('service_charge_rate', '5.0') }}%) ₦{{ number_format($booking->service_charge, 2) }}
VAT ({{ \App\Models\Setting::getVal('tax_rate', '7.5') }}%) ₦{{ number_format($booking->tax_amount, 2) }}
Refundable Security Deposit ₦{{ number_format(100000, 2) }}
Total Stay Cost ₦{{ number_format($booking->total_price, 2) }}
Payment Status {{ $booking->payment_status }}
Kevron Host Desk

Kevron Concierge

24/7 En-Suite Dedicated Host Desk

@endsection