Codigo: {{ $item->codigo }}
Producto: {{ $item->producto }}
@include('detalleCotizacionInicial.descuentos')
{{--
--}}
@php
$url = 'default.png';
if ($item?->imagen != null) {
$url = $item?->imagen;
}
if ($url == null) {
$url = 'default.png';
}
@endphp
@if ($item?->tiposPrecios)
@if (count($item?->tiposPrecios->where('pivot.estado', 1)) > 0)
@else
¡Opps! Parece que no tienes ningun registro de precios para el producto
seleccionado
@endif
@endif