@extends('layouts.app') @section('title', 'Footwear Shop & Collections') @section('content')
Home / Shop Footwear @if(!empty($filters['category'])) / {{ str_replace('-', ' ', $filters['category']) }} @endif

All Footwear Collections

Showing {{ $products->total() }} premium footwear styles

{{-- ===== FILTERS SIDEBAR ===== --}} {{-- ===== RESULTS GRID ===== --}}
@if(array_filter($filters))
Active Filters: @foreach(array_filter($filters) as $k => $v) @if($v && $k !== 'sort') {{ $k }}: {{ $v }} @endif @endforeach Clear all
@endif
@forelse($products as $product) @empty
🔍

No footwear matched your search

Try clearing some filter criteria or searching for different keywords.

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