Generado el: {{ date('d/m/Y H:i') }}
| Código | Nombre | Categoría | Marca | Precio Venta | Stock | Estado |
|---|---|---|---|---|---|---|
| {{ $articulo->codigo }} | {{ $articulo->nombre }} | {{ $articulo->categoria ? $articulo->categoria->nombre : 'N/A' }} | {{ $articulo->marca ? $articulo->marca->nombre : 'N/A' }} | {{ number_format($articulo->precio_venta ?? 0, 2) }} | {{ $articulo->inventarios ? $articulo->inventarios->sum('saldo_stock') : 0 }} | {{ $articulo->estado ? 'Activo' : 'Inactivo' }} |