@extends('themes.organic.layouts.master')
@section('title', $q !== '' ? ('Search: ' . $q) : 'Search Products')
@section('content')
@if($q !== '')
"{{ $q }}" এর ফলাফল ({{ $products->total() }})
@else
সকল পণ্য ({{ $products->total() }})
@endif
@if($products->count())
@foreach($products as $product)
@include('themes.organic.layouts.product-card', ['product' => $product, 'gridContext' => 'category'])
@endforeach
{{ $products->links() }}
@else
@endif
@endsection
@push('styles')
@endpush