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