@extends('layouts.app') @section('title', 'Search: ' . request('q')) @section('content')

Search Results for "{{ request('q') }}"

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

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

No results found

Try different keywords or browse our categories

Browse All Parts
@endif
@endsection