@php if (! isset($categories)) { $categories = is_plugin_active('ecommerce') ? \Botble\Ecommerce\Facades\ProductCategoryHelper::getProductCategoriesWithUrl() : collect(); } $groupedCategories = $categories->groupBy('parent_id'); $currentCategories = $groupedCategories->get(0); $limit = theme_option('ecommerce_header_categories_limit', 10); @endphp @if($currentCategories) @php $hasMoreCategories = $currentCategories->count() > $limit + 1; @endphp
@endif