Invoice #{{ $order->id }}


Customer Information

{{ $order->shipping_address['name'] ?? '' }}

{{ $order->shipping_address['address'] ?? '' }}

{{ $order->shipping_address['city'] ?? '' }}, {{ $order->shipping_address['state'] ?? '' }}

{{ $order->shipping_address['country'] ?? '' }} - {{ $order->shipping_address['postal_code'] ?? '' }}

Phone: {{ $order->shipping_address['phone'] ?? '' }}

Scan to Verify Order

@php $grandTotal = 0; @endphp @foreach($order->orderDetails as $item) @php $total = $item->price * $item->quantity; $grandTotal += $total; @endphp @endforeach
Product Price Qty Total
{{ $item->product->name ?? '' }} {{ $item->price }} {{ $item->quantity }} {{ $total }}
Grand Total {{ $grandTotal }}