@if(str_replace('-', ' ', Request::path()) != "administration") @endif
{{ $listeRoles = DB::table("utilitaires")->where("type", "ROLE")->where("statut", "1")->orderby("nom")->get() }}
LISTE DES UTILISATEURS
@foreach($users as $user) @endforeach
NOM EMAIL TELEPHONE ADRESSE ACTION
{{ $user->name ?? '' }} {{ $user->email ?? '' }} {{ $user->phone ?? '' }} {{ $user->location ?? '' }} @if(collect(["BOSS", "RESPONSABLE EXECUTION"])->contains(auth()->user()->role)) @endif
{{ $users->links() }}