MANTENEDOR PRODUCTOS INTELIGENTES

@if (session()->has('success'))
{{ session('success') }}
@endif
Modificar costo o precio producto:
format($this->producto->costo ?? 0)}}">
@if(count($carro) && !is_null($buscar))
    @foreach($carro as $item)
    SKU: {{$item->SKU}}
    Costo: {{ Currency::currency("USD")->format($item->Costo ?? 0)}}
    {{Str::limit($item->Titulo,37)}}
    @endforeach
@endif
@if (count($this->productoInteligente))
@foreach ($this->productoInteligente as $item) @endforeach
ID SKU PRODUCTO CANTIDAD COSTO PRECIO TIENDA BODEGA ACCIONES
{{$item->producto_id}} {{$item->producto->sku->meta_value ?? 'Sin SKU' }} {{$item->producto->post_title}} {{Currency::currency("USD")->format($item->producto->costo->meta_value ?? 0)}} {{Currency::currency("CLP")->format($item->producto->precio->meta_value * 1.19 ?? 0)}} {{$item->producto->stock_tienda->meta_value ?? 0}} {{$item->producto->stock->meta_value ?? 0}}
Total Costo: {{ Currency::currency("USD")->format($this->totalGeneral) }}
Total Venta: {{ Currency::currency("CLP")->format(round($this->totalVenta * 1.19)) }}
@else
@endif