@extends('dashboard.layouts.app') @section('title', 'Mes Plaintes Affectées - UAC eservices') @section('page-title', 'Mes Plaintes Affectées') @section('breadcrumb')
Total affectées
En attente
En cours
Traitée
| Code | Personne impliquée | Poste | Centre | Organisme | Statut | Date d'affectation | Actions |
|---|---|---|---|---|---|---|---|
{{ $plainte->code_suivi }}
|
{{ $plainte->personne_impliquee }}
@if($plainte->categorie)
{{ \App\Models\Plainte::getCategories()[$plainte->categorie] ?? $plainte->categorie }} @endif |
@if($plainte->poste) @php $postes = \App\Models\Plainte::getPostes(); $posteTrouve = false; foreach($postes as $categorie => $listePostes) { if(isset($listePostes[$plainte->poste])) { echo $listePostes[$plainte->poste]; $posteTrouve = true; break; } } if(!$posteTrouve) { echo ucfirst(str_replace('_', ' ', $plainte->poste)); } @endphp @else - @endif | @if($plainte->centre) {{ \App\Models\Plainte::getCentres()[$plainte->centre] ?? $plainte->centre }} @else - @endif | @if($plainte->poste === 'vice_recteur_affaires_academiques') - @elseif($plainte->organisme_specifique) {{ $plainte->organisme_specifique }} @else - @endif | @if($plainte->statut == 'en_attente') En attente @elseif($plainte->statut == 'en_cours') En cours @elseif($plainte->statut == 'traitee') Traitée @else Rejetée @endif |
{{ \Carbon\Carbon::parse($plainte->pivot->assigned_at)->format('d/m/Y') }}
{{ \Carbon\Carbon::parse($plainte->pivot->assigned_at)->format('H:i') }} |
|
Aucune plainte affectéeVous n'avez actuellement aucune plainte qui vous est affectée. |
|||||||