@extends('layouts.front.front') @section('maincontent')

Search Results

@if ($products->count() > 0) @foreach ($products as $product) @if(!empty($product->articleInfo))
@include('front-shop.products.product-box', ['product' => $product ])
@endif @endforeach @if(!empty($Page))
{!! $products->render() !!}
@endif @else
No results found!
@endif
@endsection @section('extraJS') @endsection