| Placed At | {{ $order->created_at->format('d F Y - H:i') }} |
| Cancelled | {{ $order->canlled->format('d F Y - H:i') }} |
| Total | {{ config('app.currency') }} {{ $order->total }} |
| Discount Code | {{ $order->discount->code }} |
| Status | {{ $order->status }} |
| Item | Price | Quantity | Total |
|---|---|---|---|
|
{{ $variation->name }}
{{ $variation->pivot->date }} {{ $variation->pivot->time }}
|
{{ config('app.currency') }} {{ $variation->pivot->unit_price }} | {{ $variation->pivot->quantity }} | {{ config('app.currency') }} {{ $variation->pivot->price }} |
| Subtotal | {{ config('app.currency') }} {{ $order->subtotal }} | ||
| Discount Amount | {{ config('app.currency') }} {{ $order->discount_amount }} | ||
| Tax | {{ config('app.currency') }} {{ $order->tax }} | ||
| Total | {{ config('app.currency') }} {{ $order->total }} Inclusive SST | ||