{{ __('Booking Details: ') . $booking->booking_reference }}

Back to List
Customer

{{ $booking->customer_name }}

{{ $booking->customer_email }}

{{ $booking->customer_phone ?? 'No phone provided' }}

Status
@php $statusColors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'confirmed' => 'bg-green-100 text-green-800', 'cancelled' => 'bg-red-100 text-red-800', 'completed' => 'bg-blue-100 text-blue-800', ]; @endphp {{ ucfirst($booking->status) }}

Booking Information

Service
{{ $booking->service->name }}
Resource
{{ $booking->resource->name }}
Date & Time
{{ $booking->booking_date->format('l, F d, Y') }}
@if($booking->booking_time) {{ Carbon\Carbon::parse($booking->booking_time)->format('h:i A') }} @if($booking->end_time) - {{ Carbon\Carbon::parse($booking->end_time)->format('h:i A') }} @endif @else All Day @endif
Total Price
${{ number_format($booking->total_price, 2) }}

Notes

{{ $booking->notes ?? 'No special notes.' }}

Quick Actions

@if($booking->status !== 'confirmed')
@csrf @method('PATCH')
@endif @if($booking->status !== 'completed')
@csrf @method('PATCH')
@endif @if($booking->status !== 'cancelled')
@csrf @method('PATCH')
@endif