Invoice: {{ $order->invoice_no }}
@endifCreated {{ $order->created_at->format('M d, Y H:i') }}
Product | Quantity | Unit Price | Discount | Tax | Total |
---|---|---|---|---|---|
{{ $item->product->name }} | {{ $item->quantity }} | {{config('custom.currency_symbol')}}{{ number_format($item->unit_price, 2) }} | {{config('custom.currency_symbol')}}{{ number_format($item->discount_price, 2) }} | {{config('custom.currency_symbol')}}{{ number_format($item->tax_amount, 2) }} | {{config('custom.currency_symbol')}}{{ number_format($item->total_price, 2) }} |
Subtotal | {{config('custom.currency_symbol')}}{{ number_format($order->items->sum('total_price'), 2) }} | ||||
Delivery Charge | {{config('custom.currency_symbol')}}{{ number_format($order->delivery_charge, 2) }} | ||||
Discount | -{{config('custom.currency_symbol')}}{{ number_format($order->discount_amount, 2) }} | ||||
Tax | {{config('custom.currency_symbol')}}{{ number_format($order->tax_amount, 2) }} | ||||
Grand Total | {{config('custom.currency_symbol')}}{{ number_format($order->total_amount, 2) }} |
{{ ucfirst($history->status) }}
@if($history->note) {{ $history->note }} @endif {{ $history->created_at->format('d M Y, g:i A') }}No status changes recorded.
@endforelse