@if ($products->isNotEmpty())
@if($title = $shortcode->title)

{!! BaseHelper::clean($title) !!}

@endif @if ($description = $shortcode->description)

{!! BaseHelper::clean($description) !!}

@endif @if ($subtitle = $shortcode->subtitle)

{!! BaseHelper::clean($subtitle) !!}

@endif
@foreach($products as $product)
{!! Theme::partial('product-item', compact('product')) !!}
@endforeach
@endif