@extends('master')
@section('seo_title', __('messages.SEARCH'))
@section('seo_keywords', '')
@section('seo_description', '')
@section('content')
@include('layout.breadcrumbs', [
'page_title' => __('messages.ONLINE_STORE'),
'filters' => false
])
@lang('messages.RESULTS_PER_PAGE'):
@lang('messages.ORDER_BY'):
@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