| Product | Qty | Unit Price | BV | Total |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | {{ number_format((float) $item->unit_price, 2) }} | {{ number_format((float) $item->line_bv, 2) }} | {{ number_format((float) $item->line_total, 2) }} |
| Subtotal | {{ number_format((float) $order->subtotal, 2) }} |
|---|---|
| Tax | {{ number_format((float) $order->tax, 2) }} |
| Shipping | {{ number_format((float) $order->shipping, 2) }} |
| Total | {{ number_format((float) $order->total, 2) }} |