@extends('themes.basic.layouts.single') @section('header_title', translate('Items')) @section('title', translate('Items')) @section('body_bg', 'bg-white') @section('breadcrumbs', Breadcrumbs::render('items')) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'items')) @section('container', 'container-custom') @section('header_v4', true) @section('content')
@if (request()->query->count() > 0) {{ translate('Your search results') }} @else {{ translate('All Items') }} @endif
@if ($items->count() > 0)
@include('themes.basic.partials.grid-buttons')
@endif
@include('themes.basic.partials.search-params')
@include('themes.basic.partials.search-items', [ 'items' => $items, ])
@endsection