@foreach([
['show_trust_bar', 'Trust Bar (on/off — customize in Website Settings → Trust Bar)'],
['show_categories', 'Top Categories (Fashion tiles)'],
['show_featured_collections', 'Featured Collections (Men / Women tabs)'],
['show_promo_banners', 'Promo Cards (3 banners after categories)'],
['show_spotlight_grid', 'Spotlight Grid (3×2 product promo cards — Gadget theme)'],
['show_trending', 'Top Trending Products'],
['show_new_arrivals', 'New Arrival Products'],
['show_formal_ethnic', 'Formal Wear + Ethnic Wear blocks'],
['show_journal', 'From the Journal (Blog)'],
['show_gift_cards', 'Gift Card section'],
['show_combo', 'Combo Offers (Organic theme)'],
['show_popular', 'Popular Products'],
['show_bestsellers', 'Best Sellers'],
['show_gold_price', "Today's Gold Price (Jewelry theme)"],
['show_testimonials', 'Testimonials'],
['show_order_tracking', 'Order Tracking Bar'],
] as [$key, $label])
{{ $label }}
@endforeach
@php
$catStyles = collect(config('homepage-category-styles', []))
->filter(fn ($meta, $key) => in_array($activeTheme ?? 'organic', $meta['themes'] ?? [], true));
$currentCatStyle = old('category_display_style', $settings['category_display_style'] ?? 'freshio_pills');
@endphp
@if($catStyles->isNotEmpty())
Category Section Style
@foreach($catStyles as $styleKey => $styleMeta)
{{ $styleMeta['label'] ?? $styleKey }}
@endforeach
@php $styleHelp = $catStyles->get($currentCatStyle)['description'] ?? ''; @endphp
{{ $styleHelp }}
@endif