@if($categories->count() > 0)
| Category |
Products |
Status |
Sort Order |
Actions |
@foreach($categories->whereNull('parent_id') as $category)
@include('product-categories.partials.category-row', ['category' => $category, 'level' => 0])
@endforeach
@else
No Categories Yet
Start organizing your products by creating categories.
Create First Category
@endif