@extends('themes.smartbazar.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.smartbazar.layouts.product-card', ['product' => $product, 'gridContext' => 'category']) @endforeach
{{ $products->links() }}
@else
কোনো পণ্য পাওয়া যায়নি।
সকল পণ্য দেখুন হোমে ফিরে যান
@endif
@endsection @push('styles') @endpush