| # | Product | Qty | Rate | GST | Amount |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->product->name ?? 'Product Deleted' }} @if($item->product?->sku) SKU: {{ $item->product->sku }} @endif |
{{ number_format(
(float) $item->qty,
2
) }}
@if(
(float) $item->free_qty > 0
)
+{{ number_format( (float) $item->free_qty, 2 ) }} Free @endif |
₹{{ number_format( (float) $item->selling_price, 2 ) }} |
{{ number_format(
(float) $item->gst_rate,
2
) }}%
₹{{ number_format( (float) $item->tax_amount, 2 ) }} |
₹{{ number_format( (float) $item->line_total, 2 ) }} |
| No products found. | |||||
| Subtotal | ₹{{ number_format( (float) $sale->subtotal, 2 ) }} |
| Discount | ₹{{ number_format( (float) $sale->discount, 2 ) }} |
| GST / Tax | ₹{{ number_format( (float) $sale->gst_total, 2 ) }} |
| Grand Total | ₹{{ number_format( $grandTotal, 2 ) }} |
| Paid | ₹{{ number_format( $totalPaid, 2 ) }} |
| Balance | ₹{{ number_format( $outstanding, 2 ) }} |
| Balance | PAID |