@extends('layouts.admin') @section('title', 'Demandes d\'audience au rectorat UAC') @section('content')
| Nom | Mobile | Rôle | Institution/Autorité | Statut | Actions | |
|---|---|---|---|---|---|---|
| {{ $user->name }} | {{-- Email --}}{{ $user->email }} | {{-- Mobile --}}{{ $user->mobile ?? '-' }} | {{-- Rôle --}}{{ ucfirst(str_replace('-', ' ', userRole($user->role))) }} | {{-- Institution --}}{{ $user->institution?->name ?? $user->service?->name ?? '_' }} | {{-- Statut --}}@php $class = match ($user->status) { 'pending' => 'bg-warning text-dark', 'confirmed' => 'bg-success text-white', 'rejected' => 'bg-danger text-white', default => 'bg-secondary', }; @endphp {{ ucfirst( demandStatus($user->status)) }} | {{-- Actions --}}
|