Inventario · generado el {{ now()->format('d/m/Y') }}
| Nombre | Paso | Categoría | Fecha | Valor | Ubicación | Estado |
|---|---|---|---|---|---|---|
| {{ $item->nombre }} | {{ $item->paso->nombre ?? 'General' }} | {{ $item->categoria }} | {{ optional($item->fecha_adquisicion)->format('d/m/Y') }} | {{ $item->valor !== null ? number_format($item->valor, 2, ',', '.').' €' : '' }} | {{ $item->ubicacion }} | {{ \App\Models\Inventario::ESTADOS[$item->estado] ?? $item->estado }} |