@lang('modules.department.dragAndDrop')
    @foreach ($departments as $department)
        
            - 
                → {{ $department->team_name }}
                @if ($department->childs)
                    @include('departments-hierarchy.manage_hierarchy', [
                        'childs' => $department->childs,'parent_id' => $department->id
                    ])
                @endif
            
    @endforeach
    
    
        - @lang('app.new') @lang('modules.department.hierarchy')