@if($category->image) {{ $category->translate(app()->getLocale())->name }} @else @endif
{!! str_repeat('    ', $depth) !!}{{ $category->translate(app()->getLocale())->name }}
{{ $category->id }} {{ $category->parent_id ?? 'Root' }}
@csrf @method('DELETE')
@if($category->children->isNotEmpty()) @foreach($category->children as $childCategory) @include('admin.category.partials.category_item', ['category' => $childCategory, 'depth' => $depth + 1]) @endforeach @endif