- Name
- {{ $item->name }}
- SKU
- {{ $item->sku ?: '—' }}
- HSN / SAC
- {{ $item->hsn_sac ?: '—' }}
- Purchase rate
- ₹ {{ number_format((float) $item->purchase_rate, 2) }}
- Sale rate
- ₹ {{ number_format((float) $item->sale_rate, 2) }}
- Tax
- {{ number_format((float) ($item->taxRate?->rate ?? 0), 1) }}%
- Unit
- {{ $item->unit ?: 'NOS' }}
@if($item->description)
- Description
- {!! function_exists('format_line_description') ? format_line_description($item->description) : nl2br(htmlspecialchars($item->description, ENT_QUOTES, 'UTF-8'), false) !!}
@endif