@extends('layouts.modern') @section('title', 'Collection - ' . setting('store_name')) @section('content')

Curated Collection.

Discover our exclusive range of products, designed for those who appreciate the finer details of modern craftsmanship.

Sort By

@if($products->isEmpty())

No products found in this selection.

Reset Filters
@else
@foreach($products as $product)
{{ $product->name }}
@if($product->price_was) Sale @endif @if($product->is_featured) Featured @endif

{{ $product->category->name }}

{{ $product->name }}

Rp {{ number_format($product->price, 0, ',', '.') }} @if($product->price_was) Rp {{ number_format($product->price_was, 0, ',', '.') }} @endif
@endforeach
{{ $products->links() }}
@endif
@endsection