{{ $producto['code'] ?? '' }}
{{ isset($producto['description']) ? Str::limit($producto['description'], 50) : '' }}
Intenta con otro término de búsqueda
{{ $selectedProductData->code }}
{{ $selectedProductData->categoria->name ?? 'Sin categoría' }}
| Producto | Cantidad | Precio Unit. | Subtotal | Acciones |
|---|---|---|---|---|
|
@php
$producto = \App\Models\Producto::find($item['producto_id']);
@endphp
@if($producto && $producto->featuredImage)
{{ $item['nombre'] }}@if($producto && $producto->categoria) {{ $producto->categoria->name }} @endif @if($producto) {{ $producto->code }} @endif |
{{ $item['cantidad'] }} | $ {{ number_format($item['precio_unitario'], 2) }} | $ {{ number_format($item['subtotal'], 2) }} | |
| Total del Pedido: | $ {{ number_format($this->total, 2) }} | |||
Agrega productos al carrito para continuar con el pedido