@extends('layouts.frontend') @section('title', (request('category') ? $categories->firstWhere('slug', request('category'))?->name . ' - ' : '') . 'Shop - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')

@if(request('search')) Search: "{{ request('search') }}" @elseif(request('category')) {{ $categories->firstWhere('slug', request('category'))?->name ?? 'Products' }} @elseif(request('hot_deal')) 🔥 Hot Deals @elseif(request('free_shipping')) 🚚 Free Shipping @else All Products @endif

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

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

No products found

Try adjusting your filters or search terms.

View All Products
@endif
@endsection