@foreach($childs as $childkey => $category)
  • @if($category->profile_picture =='') @else @endif
    ({{$category->id}})

    {{$category->first_name}} {{$category->last_name}}

    @if($emp_id == $category->id) @break; @else @if(count($category->childs) > 0) @include('admin.organogram',['class_name'=>'d-none', 'childs' => $category->childs,'class_add' => count($category->childs) == 0 ? 'only-one' : 'team','id' => $category->id]) @endif @endif
  • @endforeach