@php $sectionOptions = $categoriesOptions ?? []; $sectionData ??= []; $categories = (array)data_get($sectionData, 'categories'); $subCategories = (array)data_get($sectionData, 'subCategories'); $countPostsPerCat = (array)data_get($sectionData, 'countPostsPerCat'); $countPostsPerCat = collect($countPostsPerCat)->keyBy('id')->toArray(); $hideOnMobile = (data_get($sectionOptions, 'hide_on_mobile') == '1') ? ' hidden-sm' : ''; $catDisplayType = data_get($sectionOptions, 'cat_display_type'); $maxSubCats = (int)data_get($sectionOptions, 'max_sub_cats'); @endphp @includeFirst([ config('larapen.core.customizedViewPath') . 'sections.spacer', 'sections.spacer' ], ['hideOnMobile' => $hideOnMobile])