@if($payment->booking)
Start Time:
{{ $payment->booking->start_time->format('M d, Y h:i A') }}
End Time:
{{ $payment->booking->end_time->format('M d, Y h:i A') }}
Booking Date:
{{ $payment->booking->booking_date->format('M d, Y h:i A') }}
Status:
{{ ucfirst($payment->booking->status) }}
Booking Type:
{{ ucfirst(str_replace('_', ' ', $payment->booking->booking_type)) }}
Total Amount:
${{ number_format($payment->booking->total_amount, 2) }}
@if($payment->booking->extras)
Guests:
{{ $payment->booking->extras['guests'] ?? 'N/A' }}
Special Requests:
{{ Str::limit($payment->booking->extras['special_requests'] ?? 'N/A', 25) }}
@endif
@else
No booking details available
@endif