@extends('layouts.shell') @section('title', 'Toko — '.($brand['name'] ?? 'Quran Review')) @section('main-pad', 'px-5 pt-6') @section('content') {{-- Hero toko --}}
Toko Quran Review

Buku & Merchandise Islami

{{ $total }} produk pilihan, checkout aman via marketplace resmi.

@if($featured->isNotEmpty()) {{-- Rail unggulan --}} @foreach($featured as $product) @if($product->image) @else
@endif

{{ $product->title }}

Rp{{ number_format($product->price,0,',','.') }}

@endforeach
@endif {{-- Rail per kategori --}} @forelse($byCategory as $catName => $items)

{{ $catName }}

@foreach($items as $product)
@if($product->image) @else
@endif

{{ $product->title }}

Rp{{ number_format($product->price,0,',','.') }}

@endforeach
@empty

Belum ada produk.

@endforelse @endsection