@php $products = [ [ 'name' => 'Oud Royal Premium', 'category' => 'Luxury', 'price' => 1200000, 'image' => 'https://placehold.co/400x500/png?text=Oud+Royal', 'rating' => 5.0, 'reviews' => 120, 'is_new' => true, 'colors' => ['#78350f', '#1f2937'], ], [ 'name' => 'Rose Velvet', 'category' => 'Floral', 'price' => 450000, 'image' => 'https://placehold.co/400x500/png?text=Rose+Velvet', 'rating' => 4.8, 'reviews' => 85, 'is_new' => false, 'colors' => ['#be123c', '#fce7f3'], ], [ 'name' => 'Ocean Breeze', 'category' => 'Fresh', 'price' => 320000, 'image' => 'https://placehold.co/400x500/png?text=Ocean+Breeze', 'rating' => 4.9, 'reviews' => 200, 'is_new' => false, 'colors' => ['#0ea5e9', '#e0f2fe'], ], [ 'name' => 'Vanilla Sky', 'category' => 'Sweet', 'price' => 350000, 'image' => 'https://placehold.co/400x500/png?text=Vanilla+Sky', 'rating' => 4.7, 'reviews' => 150, 'is_new' => true, 'colors' => ['#d4d4d8', '#71717a'], ], [ 'name' => 'Midnight Musk', 'category' => 'Musky', 'price' => 550000, 'image' => 'https://placehold.co/400x500/png?text=Midnight+Musk', 'rating' => 4.6, 'reviews' => 90, 'is_new' => false, 'colors' => ['#1f2937', '#000000'], ], [ 'name' => 'Citrus Energy', 'category' => 'Fresh', 'price' => 280000, 'image' => 'https://placehold.co/400x500/png?text=Citrus+Energy', 'rating' => 4.5, 'reviews' => 60, 'is_new' => false, 'colors' => ['#eab308', '#fef08a'], ], ]; $recommendations = [ [ 'name' => 'Golden Amber', 'category' => 'Oriental', 'price' => 890000, 'image' => 'https://placehold.co/400x500/png?text=Golden+Amber', 'rating' => 4.9, ], [ 'name' => 'Spring Blossom', 'category' => 'Floral', 'price' => 380000, 'image' => 'https://placehold.co/400x500/png?text=Spring+Blossom', 'rating' => 4.7, ], [ 'name' => 'Woody Intense', 'category' => 'Woody', 'price' => 650000, 'image' => 'https://placehold.co/400x500/png?text=Woody+Intense', 'rating' => 4.8, ], [ 'name' => 'Aqua Marine', 'category' => 'Fresh', 'price' => 420000, 'image' => 'https://placehold.co/400x500/png?text=Aqua+Marine', 'rating' => 4.6, ], [ 'name' => 'Spicy Leather', 'category' => 'Leather', 'price' => 750000, 'image' => 'https://placehold.co/400x500/png?text=Spicy+Leather', 'rating' => 4.9, ], ]; @endphp
{{-- Hero Section --}}
{{-- Background Image --}}
Perfume Collection Background
{{-- Content --}}

Koleksi Parfum

Temukan aroma khas yang mencerminkan kepribadian dan gaya Anda.

{{-- Search Bar --}}
{{-- Toolbar (Sort Only) --}}
@foreach ($products as $item)
@if ($item['is_new']) New @endif
{{ $item['category'] }}
{{ $item['rating'] }} ({{ $item['reviews'] }})

{{ $item['name'] }}

Rp {{ number_format($item['price'], 0, ',', '.') }}
@endforeach

Mungkin Anda Suka

@foreach ($recommendations as $rec)
{{ $rec['name'] }}
{{ $rec['category'] }}

{{ $rec['name'] }}

Rp {{ number_format($rec['price'], 0, ',', '.') }}
@endforeach