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

Search Results

@if (isset($query))

Showing results for: {{ $query }}

@endif
@forelse ($products as $product)
@include('layouts.product-card', ['product' => $product])
@empty

No products found.

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