@include('comercio.navbar')
@if($item->descuento_store > 0) Oferta @endif {{ $item->name }}
Image Thumbnail

{{ $item->description }}


@if($item->descuento_store > 0) @php $precioConDescuento = $item->sale_unit_price - $item->descuento_store; @endphp

Precio: {{ $item->currency_type->symbol }} {{ number_format($item->sale_unit_price, 2) }}

Precio con descuento: {{ $item->currency_type->symbol }} {{ number_format($precioConDescuento, 2) }}

@else

Precio: {{ $item->currency_type->symbol }} {{ number_format($item->sale_unit_price, 2) }}

@endif

Stock: {{ intval($item->stock) }}

Código: {{ $item->internal_id }}

Más detalles: {{ $item->name }}
{{ $item->technical_specifications }}

Cantidad:
@include('comercio.footer')