@if($level > 0) @endif

{{ $category->title }}

@if($category->description)

{{ Str::limit($category->description, 30) }}

@endif
{{ $category->is_active ? 'فعال' : 'غیرفعال' }}
@csrf @method('DELETE')
@if($category->childrenRecursive) @foreach($category->childrenRecursive as $child) @include('admin.categories.row', ['category' => $child, 'level' => $level + 1]) @endforeach @endif