| Product | Option | Qty | Price | Discount | Amount |
|---|---|---|---|---|---|
| {{ $item->product['name_en'] }} {{ $item->order_note ? "(".$item->order_note.")":""}} |
@foreach($item->orderOptions as $option)
@if ($option->name == 'Color')
{{ $option->name }} - @else {{ $option->name }} - {{$option->value }} @endif @endforeach |
{{ $item->quantity ?? '' }} | {{ number_format($item->price) ?? '' }} | {{ number_format($item->discount_price) ?? '' }} | {{ ($item->price * $item->quantity) - $item->discount_price }} |
| Sub Total | {{ number_format($order->sub_total) ?? '' }} | ||||
| Delivery Fee | {{ number_format($order->delivery->fee) ?? '' }} | ||||
| Tax | 5% Included | ||||
| Grand Total | {{ number_format($order->grand_total) ?? '' }} | ||||