@forelse ($productCategories as $category)
!$category->activated])>
|
{{ $category->id }}
|
|
@if ($category->productSubCategories->count() > 0)
{{ $category->productSubCategories->count() }}
@else
@endif
|
@if ($category->products->count() > 0)
{{ $category->products->count() }}
@endif
|
@php
if ($category->products->count() > 0) {
if ($category->activated) $icon = "bi-check2-circle";
else $icon = "bi-dash-circle-fill";
} else $icon = "bi-trash";
@endphp
|
@empty
No data. |
@endforelse