@foreach ($categories as $category)
  • @if (!empty($category->children) && count($category->children))
    @include('livewire.product.category_tree', ['categories' => $category->children])
    @endif
  • @endforeach