{{ $sfStore->name }} - Order Receipt
| Item |
Qty |
Unit |
Total |
@foreach($order->orderDetails as $line)
|
{{ $line->product_name }}
@if($line->variant_name)
({{ $line->variant_name }})
@endif
|
{{ $line->quantity }} |
{{ format_currency($line->final_unit_price) }} |
{{ format_currency($line->line_total) }} |
@endforeach
| Base Price Subtotal | {{ format_currency($order->order_base_price) }} |
| Subtotal (Excl. Discount & Tax) | {{ format_currency($order->subtotal) }} |
| Discounts | {{ format_currency($order->total_discount) }} |
| Coupon Discount | {{ format_currency($order->coupon_discount ?? 0) }} |
| Subtotal (After Discount) | {{ format_currency($order->subtotal_after_discount) }} |
| TAX | {{ format_currency($order->total_tax) }} |
| Payable Amount | {{ format_currency($order->grand_total) }} |