ultimatepos/resources/views/holding/partials/org_tree_nodes.blade.php

20 lines
800 B
PHP

@if(!empty($nodes))
<ul class="list-unstyled" style="padding-right:20px;">
@foreach($nodes as $node)
<li style="margin-bottom:6px;">
<i class="fas fa-folder text-muted"></i>
<strong>{{ $node['unit']->name }}</strong>
@if($node['unit']->code)
<span class="label label-default">{{ $node['unit']->code }}</span>
@endif
@if(!empty($node['unit']->meta['hrm_department_id']))
<span class="label label-info">HRM</span>
@endif
@if(!empty($node['children']))
@include('holding.partials.org_tree_nodes', ['nodes' => $node['children']])
@endif
</li>
@endforeach
</ul>
@endif