@if (!$listaPreciosDetalle->isEmpty()) @php $esNeto = !empty(session('tipoDePrecio')) && session('tipoDePrecio') === 'neto'; @endphp @foreach ($listaPreciosDetalle as $listaPrecioDetalle)
@php $foto_producto = \FCR::getFotoProducto($listaPrecioDetalle->producto_id, 1); @endphp @if (!empty($listaPrecioDetalle->imagen)) @if (!empty($foto_producto)) @else @endif @else @endif
  • {{ $listaPrecioDetalle->producto_titulo }}
  • @if (!empty($listaPrecioDetalle->producto_codigo_sku))
  • SKU: {{ $listaPrecioDetalle->producto_codigo_sku }}
  • @endif
@php $precioNormal = $esNeto ? $listaPrecioDetalle->precio_normal_neto : $listaPrecioDetalle->precio_normal; @endphp
@php $precioOferta = $esNeto ? $listaPrecioDetalle->precio_oferta_neto : $listaPrecioDetalle->precio_oferta; @endphp
@endforeach @else No existen registros @endif