@foreach ($products as $product)
@if ($product->new)
@endif
{{ $product->name }}
{!! nl2br($product->description) !!}
@foreach (collect($product->tags) as $tag)
{{ $tag['value'] }}
@endforeach
@if ($product->price != 0)
{{ $currency['symbol'] }} {{ number_format($product->price,
$currency['decimals'], $currency['decimal_separator'],
$currency['thousands_separator']) }}
@endif
@endforeach
@foreach ($banners as $banner)
@if ($banner->Imagen && $banner->ImagenMobile)
@if ($isMobile)
@elseif (!$isMobile)
@endif
@elseif ($banner->Imagen && !$banner->ImagenMobile && !$isMobile)
@elseif (!$banner->Imagen && $banner->ImagenMobile && $isMobile)
@endif
@endforeach