@extends('layouts.base') @section('content') @section('breadcrumb') @endsection

Dénonciations

Gestion des dénonciations clients.

Nouvelle dénonciation
Liste des dénonciations
@if($denonciations->isEmpty())
Aucune dénonciation

Commencez par créer votre première dénonciation.

Créer une dénonciation
@else
@foreach($denonciations as $denonciation) @endforeach
Client Email 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
@if($denonciations->hasPages())
Affichage de {{ $denonciations->firstItem() }} à {{ $denonciations->lastItem() }} sur {{ $denonciations->total() }} résultats
@endif @endif
@endsection