@extends('themes.gadget.layouts.master') @section('title', 'Search: ' . $q) @section('content')

"{{ $q }}" এর ফলাফল ({{ $products->total() }})

@if($products->count())
@foreach($products as $product) @include('themes.gadget.layouts.product-card', ['product' => $product, 'gridContext' => 'category']) @endforeach
{{ $products->links() }}
@else
কোনো পণ্য পাওয়া যায়নি।
হোমে ফিরে যান
@endif
@endsection