📊 Bulletin de Pointage Mensuel

{{ $agent->prenom ?? '' }} {{ $agent->nom ?? '' }}
Matricule: {{ $agent->matricule ?? '' }} | Email: {{ $agent->email ?? '' }} | Poste: {{ $agent->poste ?? '' }}
{{ \Carbon\Carbon::parse($month.'-01')->locale('fr')->isoFormat('MMMM YYYY') }}

📋 Tableau de Pointage

@forelse(($details ?? []) as $d) @empty @endforelse
Date Arrivée Départ Heures Normales Heures Supp Tùche Absence
{{ $d['date'] ? \Carbon\Carbon::parse($d['date'])->format('d/m/Y') : '-' }} {{ $d['heure_arrivee'] ?? '-' }} {{ $d['heure_depart'] ?? '-' }} {{ $d['heures_normales'] ?? '-' }} {{ $d['heures_supp_apres_17h'] ?? '-' }} {{ $d['tache'] && $d['tache'] !== '---' ? $d['tache'] : '-' }} {{ $d['absence'] ? 'Oui' : 'Non' }}
Aucune donnée pour la période.

📈 RĂ©sumĂ© du Mois

JOURS TRAVAILLÉS
{{ $totaux['daysWorked'] ?? 0 }}
ABSENCES
{{ $totaux['absences'] ?? 0 }}
TOTAL HEURES
{{ $totaux['totalHours'] ?? '00:00' }}
HEURES SUPPLÉMENTAIRES
{{ $totaux['overtimeHours'] ?? '00:00' }}