@extends('layouts.app') @section('content')
{{-- Page Header --}}

Shop All Toys

Discover our collection of {{ $products->total() }} educational toys

{{-- Sidebar Filters --}} {{-- Product Grid --}}
{{-- Toolbar --}}
Showing {{ $products->firstItem() ?? 0 }} - {{ $products->lastItem() ?? 0 }} of {{ $products->total() }} products
{{-- Products --}} @if($products->count() > 0)
@foreach($products as $product) @include('components.product-card', ['product' => $product]) @endforeach
{{-- Pagination --}}
{{ $products->links() }}
@else

No products found

Try adjusting your filters or search criteria.

@endif
@endsection