Productos en la categoría: {{ $tag->name }}
@if($items->isEmpty())
No hay productos en esta categoría.
@else
@foreach($items as $item)
@php
$precioConDescuento = $item->sale_unit_price - $item->descuento_store;
@endphp
@if($item->descuento_store > 0)
Oferta
@endif
@endforeach
@endif
@include('comercio.footer')