@foreach ($categories as $category) @php // Calculate total product count including all children $totalCount = $category->products->count(); if ($category->children->count()) { foreach ($category->children as $child) { $totalCount += $child->totalProducts(); } } @endphp