@if($section->title || $section->subtitle)
@if($section->subtitle)
{{ $section->subtitle }}
@endif
@if($section->title)
{{ $section->title }}
@endif
@endif
@php
$categories = \App\Models\Product\ProductCategory::where('agency_id', $agency->id)
->active()
->public()
->whereNull('parent_id')
->withCount('products')
->orderBy('sort_order')
->limit($section->getConfig('category_limit', 8))
->get();
@endphp