Generated on: {{ now()->format('d.m.Y H:i') }}
| Booking ID | Payment ID | Customer Name | Date | Payment Method | Amount (€) | Refund Amount (€) | Status |
|---|---|---|---|---|---|---|---|
| #{{ $booking->id }} | {{ $booking->stripe_payment_intent ?? 'N/A' }} | {{ $booking->userDetails ? $booking->userDetails->first_name.' '.$booking->userDetails->last_name : 'N/A' }} | {{ $booking->created_at->format('d.m.Y') }} | {{ $booking->payment_method ?? 'N/A' }} | {{ number_format($booking->total, 2, ',', '.') }} € | {{ number_format($booking->refund_amount, 2, ',', '.') }} € | @switch($booking->payment_status) @case('paid') Completed @break @case('unpaid') Canceled @break @case('refund') Refunded @break @case('reconciliation') Reconciliation @break @default {{ $booking->payment_status }} @endswitch |