@extends('layouts.app') @section('title', 'Products') @section('content')

@if($currentCategory) {{ $currentCategory->name }} @else All Products @endif

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

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

No products found

Try adjusting your filters or search terms

View All Products
@endif
@endsection