@extends('front::layouts.app') @section('title', 'Advanced Search - ' . config('app.name')) @section('content')

Advanced Search

Find exactly what you're looking for with our powerful search and filtering tools.

Advanced Filters

-
@if($searchPerformed)

Search Results for "{{ $query }}"

{{ $totalResults }} products found
@if($totalResults > 0)
@foreach($products as $product)
@if($product->getFirstMediaUrl('images')) {{ $product->title }} @else
@endif

{{ $product->title }}

@if($product->special_price) ${{ number_format($product->special_price, 2) }} ${{ number_format($product->price, 2) }} @else ${{ number_format($product->price, 2) }} @endif
Stock: {{ $product->stock > 0 ? 'In Stock' : 'Out of Stock' }}
@endforeach
@else

No products found

Try adjusting your search terms or filters to find what you're looking for.

Try these suggestions:

@endif
@else

Search Tips

@endif
@push('scripts') @endpush @push('styles') @endpush @endsection