@extends('layouts.base') @section('content') @section('breadcrumb') @endsection
Gestion des dénonciations clients.
| Client | Téléphone | Programme | Conseiller | Validée | Date de création | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $denonciation->client_lastname }} {{ $denonciation->client_firstname }} | @if($denonciation->client_email) {{ $denonciation->client_email }} @else - @endif | {{ $denonciation->client_phone ?: '-' }} | {{ $denonciation->program?->name ?? '-' }} | @if($denonciation->conseiller) {{ $denonciation->conseiller->firstname }} {{ $denonciation->conseiller->lastname }} @else - @endif | @if($denonciation->is_validated) Oui @else Non @endif | @if($denonciation->created_at) {{ \Carbon\Carbon::parse($denonciation->created_at)->format('d/m/Y H:i') }} @else - @endif |