@foreach($childs as $child)
  • @if($child->id == $product_category_id) {{ $child->name }} (ID: {{ $child->id }}) @else {{ $child->name }} (ID: {{ $child->id }}) @endif @if(count($child->categories)) @include('partials.manage.product-edit-subcategories',['childs' => $child->categories]) @endif
  • @endforeach