Invoice

Download PDF

Order ID: {{ $booking->order_id }}

User: {{ $booking->user->name ?? '-' }}

Order Date: {{ $booking->order_date ?? '-' }}

Payment Method: {{ ucfirst($booking->payment_method) }}


Items
@foreach($booking->items as $key => $item) @endforeach
# Item Qty Price Total
{{ $key+1 }} {{ $item->name ?? 'Item' }} {{ $item->qty ?? 1 }} {{ $item->price ?? 0 }} {{ ($item->qty ?? 1) * ($item->price ?? 0) }}
Final Amount: QAR {{ $booking->final_amount }}