@foreach($childs as $childkey => $category) @if(in_array($category->id,$reporting_to))
  • @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) @if(isset($form_emp)) @include('admin.reporting_organogram',['childs' => $category->childs,'class_add' => '','id' => $category->id,'form_emp'=>true]) @else @include('admin.reporting_organogram',['childs' => $category->childs,'class_add' => count($category->childs) == 0 ? 'only-one' : 'team','id' => $category->id]) @endif @endif @endif
  • @else @continue; @endif @endforeach