@extends('layouts.app') @section('titulo', 'Inventario · Stock Actual') @section('contenido') {{-- ========================================================= --}} {{-- ENCABEZADO --}} {{-- ========================================================= --}}
Consulta el stock disponible por producto y almacén.
Unidades en stock
{{ number_format($unidades) }}
@if ($almacenId)Almacén seleccionado
@elseTodos los almacenes
@endifValor a costo
S/ {{ number_format($valorCosto, 2) }}
Valor a precio de venta
S/ {{ number_format($valorVenta, 2) }}
Stock disponible por producto.
| Producto | Categoría | Stock | Mínimo | Costo | Valor (venta) |
|---|---|---|---|---|---|
|
{{ $p->nombre }}
@if ($p->codigo_barras)
Código:
{{ $p->codigo_barras }}
@endif
|
{{-- ================================================= --}}
{{-- CATEGORÍA --}}
{{-- ================================================= --}}
{{ $p->categoria?->nombre ?? '—' }} | {{-- ================================================= --}} {{-- STOCK --}} {{-- ================================================= --}}@if ($stockActual <= $stockMinimo) {{ number_format($stockActual) }} ⚠ @else {{ number_format($stockActual) }} @endif | {{-- ================================================= --}} {{-- STOCK MÍNIMO --}} {{-- ================================================= --}}{{ number_format($stockMinimo) }} | {{-- ================================================= --}} {{-- COSTO --}} {{-- ================================================= --}}S/ {{ number_format((float) $p->precio_compra, 2) }} | {{-- ================================================= --}} {{-- VALOR DE VENTA --}} {{-- ================================================= --}}S/ {{ number_format($valorProducto, 2) }} |
| No se encontraron productos. | |||||