@props([
'folder',
'editingId' => null,
'depth' => 0,
])
@if ($editingId === $folder->id)
@else
{{-- Poignée + icône --}}
{{ $folder->name }}
{{ $folder->documents_count }}
{{-- Actions (visibles au survol) --}}
@endif
{{-- Sous-dossiers (récursif) --}}
@foreach ($folder->childrenRecursive as $child)
@endforeach