Dear {{ $booking->user->name ?? 'User' }},
Booking Details
Booking ID:
#{{ $booking->id }}
Reference:
{{ $booking->reference_id }}
Status:
{{ ucfirst($booking->status) }}
Price:
GH₵{{ number_format($booking->price, 2) }}
Booking Date:
{{ \Carbon\Carbon::parse($booking->booking_date)->format('l, F j, Y') }}
@if(isset($booking->bookable))
Service:
{{ $booking->bookable->name ?? $booking->bookable->title ?? 'N/A' }}
@endif
If you have any questions about your booking, please do not hesitate to contact our support team.