LISTE DES CLIENTS

{{ $provider->business_name ?? $provider->first_name . ' ' . $provider->last_name }}

Généré le {{ now()->format('d/m/Y à H:i') }}

{{ $stats['count'] }} Clients
{{ $stats['total_appointments'] }} Total RDV
{{ number_format($stats['total_revenue'], 2, ',', ' ') }} {{ $currency }} CA Total
@if($clients->count() > 0) @foreach($clients as $client) @endforeach
Nom complet Téléphone Email RDV CA
{{ trim($client->first_name . ' ' . $client->last_name) }} {{ $client->phone ?? '-' }} {{ $client->email ?? '-' }} {{ $client->appointments_count }} {{ number_format($client->revenue_total ?? 0, 2, ',', ' ') }} {{ $currency }}
@endif