| # | Product | Grade | Qty | Unit Price | Total |
|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->product_name }}
@if($item->product_sku)SKU: {{ $item->product_sku }} @endif
@if($item->notes){{ $item->notes }} @endif
|
@if($item->grade) Grade {{ strtoupper($item->grade) }} @else —@endif | {{ $item->quantity }} | @if($item->unit_price) ₹{{ number_format($item->unit_price/100, 2, '.', ',') }} @else TBD@endif | @if($lineTotal > 0) ₹{{ number_format($lineTotal/100, 2, '.', ',') }} @else —@endif |
| Subtotal | @if($subtotal > 0)₹{{ number_format($subtotal/100, 2, '.', ',') }}@else —@endif |
| GST ({{ $quote->gst_percent }}%) | ₹{{ number_format($quote->gst_amount/100, 2, '.', ',') }} |
| {{ $quote->discount_label ?: 'Discount' }} | − ₹{{ number_format($quote->discount_amount/100, 2, '.', ',') }} |
| {{ $quote->shipping_label ?: 'Shipping' }} | ₹{{ number_format($quote->shipping_amount/100, 2, '.', ',') }} |
| Grand Total | ₹{{ number_format($quote->grand_total/100, 2, '.', ',') }} |