@extends('admin.layouts.app') @section('title', 'Booking Details') @section('page-title', 'Booking ' . $booking->booking_number) @section('content')
{{ $booking->booking_number }}
Room
{{ $booking->room?->room_number ?? 'Not Assigned' }}
Type
{{ $booking->roomType?->name }}
Check-in
{{ $booking->check_in_date->format('M d, Y') }}
Check-out
{{ $booking->check_out_date->format('M d, Y') }}
Phone: {{ $booking->guest_phone }}
Email: {{ $booking->guest_email ?? 'N/A' }}
ID: {{ $booking->guest_id_type ?? 'N/A' }} - {{ $booking->guest_id_number ?? '' }}
Guests: {{ $booking->adults }} Adults{{ $booking->children > 0 ? ', ' . $booking->children . ' Children' : '' }}
Nights: {{ $booking->nights }}
Source: {{ ucfirst($booking->source) }}
{{ $booking->special_requests }}
Payment: {{ $booking->payment_method }}
Status: {{ $booking->payment_status }}