| Product ID | Supplier P/N | Supplier | Location | Quantity | Available | Reserved | Unit Price | Total Value |
|---|---|---|---|---|---|---|---|---|
| {{ $product['product_id'] }} | {{ $product['supplier_part_number'] }} | {{ $product['supplier'] ?? '-' }} | {{ $product['location'] }} | {{ number_format($product['quantity']) }} | {{ number_format($product['available_quantity']) }} | {{ number_format($product['reserved_quantity']) }} | ${{ number_format($product['unit_price'], 2) }} | ${{ number_format($product['total_value'], 2) }} |
| Warehouse Total | {{ number_format($warehouse['total_quantity']) }} | ${{ number_format($warehouse['total_value'], 2) }} | ||||||
| Product ID | Supplier | Quantity | Total Value | % of Total |
|---|---|---|---|---|
| {{ $product['product_id'] }} | {{ $product['supplier'] ?? '-' }} | {{ number_format($product['quantity']) }} | ${{ number_format($product['value'], 2) }} | {{ $summary['total_value'] > 0 ? number_format(($product['value'] / $summary['total_value']) * 100, 1) : '0.0' }}% |