| Order Number: {{ $Orders->order_code }} | Date: {{ \Carbon\Carbon::parse($Orders->order_date)->format('d-m-Y') }} |
| Order Status: {{ $Orders->status }} | Shipping Address : {{ $Orders->customeraddress }} |
| No | Product Name | Design / Variant No | Quantity | Unit | Warehouse | Rate | Amount |
|---|---|---|---|---|---|---|---|
| {{ $i++}} | {{ $item->product_name }} | {{ $item->varient_name}} - {{ $item->varient_code}} | {{ $item->quantity }} | {{ $item->uom }} | {{ $item->warehouse_name }} | {{ number_format($item->price, 2) }} | {{ number_format($item->total, 2) }} |
| Sub Total | {{ number_format($Orders->subtotal, 2) }} | ||||||
| Special Discount | {{ number_format($Orders->customer_discount_amount, 2) }} | ||||||
| Grand Total | {{ number_format($Orders->grandtotal, 2) }} | ||||||