@extends('layouts.frontend') @section('title', 'Search Results | Rathore Collection') @section('content')

Search Results for "{{ $query }}"

@if($products->count() > 0)

{{ $products->total() }} products found

@foreach($products as $product)
@include('frontend.components.product-card', ['product' => $product])
@endforeach
{{ $products->links() }}
@else

No products found for "{{ $query }}" at Rathore Collection

Explore our complete range of premium stitched and unstitched garments for men, women, and children.

Browse All Products
@endif
@endsection