Customer InfoName: {{ $sales->customer->name }} Email: {{ $sales->customer->email }} Phone: {{ $sales->customer->phone }} |
Warehouse{{ $sales->warehouse->name }} |
Sales InfoDate: {{ $sales->date }} Status: {{ $sales->status }} Grand Total: ${{ number_format($sales->grand_total, 2) }} Paid Amount: ${{ number_format($sales->paid_amount, 2) }} Due Amount: ${{ number_format($sales->due_amount, 2) }} |
| # | Product Name | Quantity | Net Unit Cost | Discount | Subtotal |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->product->name }} | {{ $item->quantity }} | ${{ number_format($item->net_unit_cost,2) }} | ${{ number_format($item->discount,2) }} | ${{ number_format($item->subtotal,2) }} |
| Total Discount: ${{ number_format($sales->discount,2) }} |
| Shipping Cost: ${{ number_format($sales->shipping,2) }} |
| Grand Total: ${{ number_format($sales->grand_total,2) }} |