As of: {{ \Carbon\Carbon::parse($asOfDate)->format('d M Y') }} @if (!$isCurrentStock) (Historical) @else (Current) @endif | Source: {{ match($stockSource) { 'warehouse' => 'Warehouse Only', 'van' => 'Van Only', default => 'Warehouse + Van' } }} | {{ $stockData->count() }} supplier(s)
As of: {{ \Carbon\Carbon::parse($asOfDate)->format('d M Y') }} | Source: {{ match($stockSource) { 'warehouse' => 'Warehouse Only', 'van' => 'Van Only', default => 'Warehouse + Van' } }} @if($supplierId) | Supplier: {{ $suppliers->find($supplierId)?->supplier_name }} @endif
| Sr# | Supplier | Stock In Quantity | Stock Amount (Rs.) |
|---|---|---|---|
| {{ $index + 1 }} | {{ $row->supplier_name }} | {{ number_format($row->total_quantity, 2) }} | {{ number_format($row->total_amount, 2) }} |
| Grand Total | {{ number_format($grandTotalQuantity, 2) }} | {{ number_format($grandTotalAmount, 2) }} | |