| Producto | Cantidad | Precio Compra | Valor Total |
|---|---|---|---|
| {{ $producto->nombre }} | {{ number_format($producto->cantidad_vendida) }} | ${{ number_format($producto->precio_compra, 0) }} | ${{ number_format($producto->valor_compra_total, 0) }} |
| Categoría | Productos | Cantidad | Precio Promedio | Valor Total |
|---|---|---|---|---|
| {{ $categoria->categoria }} | {{ $categoria->productos_diferentes }} | {{ number_format($categoria->cantidad_vendida) }} | ${{ number_format($categoria->precio_compra_promedio, 0) }} | ${{ number_format($categoria->valor_compra_total, 0) }} |