@if($organisations->count() > 0)
@foreach($organisations as $organisation)
{{ $organisation->name }}
@if($organisation->fils->count() > 0) {{ $organisation->fils->count() }} {{ __('sous-organisations') }} @endif @if($organisation->employes->count() > 0)
{{ $organisation->employes->count() }} {{ __('employés') }} @endif
@endforeach
@foreach($organisations as $organisation) @if($organisation->fils->count() > 0)
@include('employes.partials.organisation-chart', ['organisations' => $organisation->fils])
@endif @endforeach @else
{{ __('Aucune organisation trouvée') }}
@endif