@extends("layouts.app") @section("content")

Search Results

Found {{ $searchCount }} results for "{{ $search }}"

{{-- Sidebar for filters (optional) --}}

Categories

{{-- Add other filters like price range if needed --}}
{{-- Main content area for products --}}
@forelse($products as $product)
{{-- Assuming a helper or standard way to get image --}} {{-- {{ $product->name }} --}}
{{ $product->name }}

${{ $product->sale_price ?? $product->price }}

{{-- Add link to product details page --}} {{-- slug) }}" class="btn btn-primary">View Details --}} {{-- Add to cart button --}}
@csrf
@empty

No products found matching your search criteria.

@endforelse
{{-- Pagination --}}
{{ $products->links() }}
@endsection