← Back to reports
@can('reports.export') @endcan
Total Inventory Value
{{ number_format($totalValue, 2) }}
@if ($balances->isEmpty()) @else
@foreach ($balances as $balance) @endforeach
Product Warehouse Quantity Avg. Cost Value
{{ $balance->product->name }}
{{ $balance->product->sku }}
{{ $balance->warehouse->name }} $balance->quantity > 0 && $balance->quantity <= $balance->product->reorder_level, 'text-red-600 dark:text-red-400' => $balance->quantity === 0, 'text-gray-800 dark:text-gray-100' => $balance->quantity > $balance->product->reorder_level, ])> {{ $balance->quantity }} {{ number_format($balance->average_cost, 2) }} {{ number_format($balance->stockValue(), 2) }}
{{ $balances->links() }}
@endif