@extends('master') @section('seo_title', __('messages.SEARCH')) @section('seo_keywords', '') @section('seo_description', '') @section('content')

@lang('messages.SEARCH')

@include('layout.breadcrumbs', [ 'page_title' => __('messages.ONLINE_STORE'), 'filters' => false ])
@if (count($products) > 0)
@foreach ($products as $product)
@include('shared.product', [ 'product' => $product, 'moreCols' => false, 'smallerFont' => true, ])
@endforeach

{{-- Pagination --}} {{ $pagination->links() }}
@else
@lang('messages.NO_PRODUCTS_FOUND')
@endif
@include('layout.back-button')
@endsection