@php
$children_count = $category->children()->count();
$icon = ($children_count >= 1)? 'folder' : 'paper';
@endphp
{{ $category->name }}
@if ($children_count > 0)
@foreach ($category->children as $child_category)
@include('tenant.warehouses.categories.item-tree-template', ['category' => $child_category])
@endforeach
@endif