Order ID: {{ $booking->order_id }}
User: {{ $booking->user->name ?? '-' }}
Order Date: {{ $booking->order_date ?? '-' }}
Payment Method: {{ ucfirst($booking->payment_method) }}
| # | Item | Qty | Price | Total |
|---|---|---|---|---|
| {{ $key+1 }} | {{ $item->name ?? 'Item' }} | {{ $item->qty ?? 1 }} | {{ $item->price ?? 0 }} | {{ ($item->qty ?? 1) * ($item->price ?? 0) }} |