@php $sel = ''; if (in_array($child_category->id, $categoriesForAttribute)): $sel = 'selected'; else: if ($categoryDATA && $categoryDATA->parent_id == $child_category->id): $sel = 'selected'; endif; endif; @endphp @if ($child_category->categories) @foreach ($child_category->categories as $childCategory) @include( 'categories.child_category', [ 'child_category' => $childCategory, 'parent_url' => $parent_url.'/'.$child_category->slug, 'before' => $before.'-', 'selected_cat' => $categoriesForAttribute ] ) @endforeach @endif