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