| # | Item | @if($bill->type_id == 1)Sub/Cat | Weight | @endifUnit | Qty | Price | Total | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{-- Item name / category --}}
{{ optional($row->category)->title_en ?? '-' }}
@if(!empty($row->stock_id))
Stock ID: {{ $row->stock_id }}
@endif
|
@if($bill->type_id == 1)
{{ optional($row->sub_category)->title_en ?? '-' }} | {{ optional($row->weight)->title_en ?? '-' }} | @endif{{ optional($row->unit)->title_en ?? '-' }} | {{ $row->qty ?? 0 }} | @if($bill->type_id == 1) {{ number_format((float)($row->sale_price ?? 0), 2) }} @else {{ number_format((float)($row->spi ?? 0), 2) }} @endif | {{ number_format((float)($row->total ?? 0), 2) }} | ||||
| No items found. | |||||||||||