@extends('layouts.admin') @section('title', 'Demandes d\'audience au rectorat UAC') @section('content')
| Date audience | Requérant | Service | Statut | Actions | |
|---|---|---|---|---|---|
|
@if($appointment?->scheduled_at)
{{ \Carbon\Carbon::parse($appointment->scheduled_at)->format('d/m/Y') }}
{{ \Carbon\Carbon::parse($appointment->scheduled_at)->format('H:i') }}
@else
—
@endif
|
{{-- Nom --}}
{{ $appointment->first_name ?? '—' }}
{{ $appointment->last_name ?? '' }}
|
{{-- Email --}}
{{ $appointment->email ?? '—' }} | {{-- Service --}}@if($service) {{ $service->name }} @else Non défini @endif | {{-- Statut report --}}@php $statusClass = match ($report->status) { 'pending' => 'bg-warning text-dark', 'confirmed' => 'bg-success text-white', 'rejected' => 'bg-danger text-white', default => 'bg-secondary text-white', }; @endphp {{ ucfirst(demandStatus($report->status)) }} | {{-- Actions --}}
|