@extends('layouts.app') @section('title', 'Products') @section('content')
{{-- Category Banner --}} @if(request('category')) @php($activeCategory = $categories->firstWhere('id', request('category'))) @if($activeCategory)
@if($activeCategory->banner)
{{ $activeCategory->name }}
@if($activeCategory->image) {{ $activeCategory->name }} @endif

{{ $activeCategory->name }}

@if($activeCategory->meta_description)

{{ Str::limit($activeCategory->meta_description, 120) }}

@endif
@else
@if($activeCategory->image) {{ $activeCategory->name }} @else
{{ $activeCategory->icon ?? '📦' }}
@endif

{{ $activeCategory->name }}

@if($activeCategory->meta_description)

{{ Str::limit($activeCategory->meta_description, 120) }}

@endif
@endif
@endif @endif {{-- Breadcrumb --}}
{{-- Sidebar Filters --}} {{-- Products Grid --}}

Showing {{ $products->firstItem() }}-{{ $products->lastItem() }} of {{ $products->total() }} products

@if(request('category')) @php($cat = $categories->firstWhere('id', request('category'))) {{ $cat?->name ?? '' }} × @endif
{{-- Mobile filter toggle --}}
{{-- Pagination --}}
{{ $products->links() }}
@endsection