@extends('layouts.app') @section('title', 'Guest Details') @section('page-title', 'Guest Details') @section('content')
Guest since {{ $guest->created_at->format('d M Y') }}
| Booking Ref | Room | Check In | Check Out | Total | Status | |
|---|---|---|---|---|---|---|
| {{ $booking->booking_reference }} | {{ $booking->room->room_number ?? 'N/A' }} - {{ $booking->room->roomType->name ?? 'N/A' }} | {{ $booking->check_in_date->format('d M Y') }} | {{ $booking->check_out_date->format('d M Y') }} | ₦{{ number_format($booking->invoice->total ?? 0, 2) }} | {{ ucfirst($booking->status) }} | View |
No booking history for this guest.