| {{ $item->name }} |
{{ $item->item_code }} |
{{$item->stockGroup->name ?? '--' }} |
|
{{ $item->baseStockItemUnit->unit->name }} |
{{ $item->hsn_code }} |
{{ $item->gst }} |
{{ $item->cess }} |
{{ $item->mrp }} |
@php
$stockLocation = App\Models\StockItemLocation::where('stock_item_id', $item->id) ->where('unit_id', $item->baseStockItemUnit->unit_id)->first();
@endphp
{{ $stockLocation->opening_stock ?? 0 }} |
{{ $stockLocation->rate ?? 0 }} |
{{ $stockLocation->value ?? 0 }} |
@endforeach