Gestión de Productos
Categorías
ID | Nombre | Acciones |
---|---|---|
{{ $cat->id }} | {{ $cat->nombre }} |
Productos
ID | Nombre | Imagen Principal | {{-- Changed from 'Imagen' to 'Imagen Principal' --}}Precio Venta | Precio Compra | Stock | Categoría | Acciones |
---|---|---|---|---|---|---|---|
{{ $prod->id }} | {{ $prod->nombre }} |
@if($prod->imagen)
@if(Str::startsWith($prod->imagen, 'http'))
|
{{ $prod->precio_venta }} | {{ $prod->precio_compra }} | {{ $prod->stock }} | {{ $prod->categoria->nombre ?? 'N/A' }} | {{-- Assuming a 'categoria' relationship --}}{{-- New button for adding more images --}} |