@if(str_replace('-', ' ', Request::path()) != "administration") @if(collect(["BOSS", "RESPONSABLE EXECUTION", "COMPTABLE"])->contains(auth()->user()->role)) @endif @endif
LISTE DES PERSONNELS
@foreach($personnels as $personnel) @endforeach
NOM ET PRENOMS TELEPHONE FONCTION GRADE ACTION
{{ $personnel->nom . " " . $personnel->prenom ?? '' }} {{ $personnel->telephone ?? '' }} {{ $personnel->fonction ?? '' }} {{ $personnel->grade ?? '' }} @if(collect(["BOSS", "RESPONSABLE EXECUTION"])->contains(auth()->user()->role)) @endif
{{ $personnels->links() }}