@if (session()->has('success'))
{{ session('success') }}
@endif
@if ($productos->count())
Resultado Productos
| Imagen |
# |
SKU |
SKU ML |
Nombre |
Precio Tienda |
Precio Mercado Libre |
Acción |
@foreach ($productos as $item)
 |
{{$item->ID}} |
{{$item->SKU}} |
@if($item->sku_ml != null)
{{$item->sku_ml}} |
@else
{{$item->sku_ml = 0}} |
@endif
{{$item->nombre}} |
{{Currency::currency("CLP")->format(round($item->precio_tienda * 1.19))}} |
@if($item->precio_ml != null)
{{Currency::currency("CLP")->format($item->precio_ml)}} |
@else
{{$item->precio_ml = 0}} |
@endif
|
@endforeach
{{$productos->links()}}
@else
@endif
@push('scripts')
@endpush