No se encontraron productos
@if($buscar)Intenta con otro término de búsqueda
@endif| ID | Producto | Tipo | Clasificación | Presentación | Cantidad | 📦 Stock Disponible | ⏳ Stock Pendiente | Imagen | Descripción | Estado | Acciones |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $p->id }} | {{ $p->producto }} | {{ $p->tipo }} | {{ $p->clasificacion }} | {{ $p->presentacion }} | {{ $p->cantidad }} |
id }})"
class="w-20 text-center border rounded px-2 py-1 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 {{ $p->stock_disponible <= 0 ? 'bg-red-100 text-red-700' : ($p->stock_disponible <= 10 ? 'bg-orange-100 text-orange-700' : 'bg-green-100 text-green-700') }}"
/>
@if($p->stock_disponible <= 0)
Agotado
@elseif($p->stock_disponible <= 10)
Stock bajo
@endif
|
id }})" class="w-20 text-center border rounded px-2 py-1 focus:ring-2 focus:ring-orange-500 focus:border-orange-500 text-orange-700 font-semibold" /> |
@if($p->img_producto && file_exists(public_path('storage/' . $p->img_producto)))
|
Descripción{{ $p->descripcion }}
|
@if($p->activo) Activo @else Bloqueado @endif |