@extends('layouts.app') @section('title','Collection | Exclusive') @section('content')
Home Collection
{{-- MOBILE FILTER TOGGLE --}}

Adjust Preferences

{{-- SIDEBAR FILTERS --}} {{-- MAIN PRODUCT GRID --}}
{{-- Toolbar --}}

{{ $products->total() }} curated pieces

Sort By
@foreach(request()->except('sort') as $k=>$v) @endforeach
@if($products->count())
@foreach($products as $product) @include('partials.product-card', ['product' => $product]) @endforeach
{{ $products->links() }}
@else

No pieces found

We couldn't find any items matching your current filters. Try adjusting your preferences.

Reset Filters
@endif
@endsection