{{-- Chargement images --}} @php function imageToBase64($path) { if(file_exists($path)) { return 'data:image/png;base64,' . base64_encode(file_get_contents($path)); } return null; } $src_entete = imageToBase64(public_path('images/entete_itracom.jpg')); $src_footer = imageToBase64(public_path('images/footer_itracom.jpg')); @endphp {{-- Header --}}
@if($src_entete) @endif
RAPPORT DES ACTIVITÉS DE SAISIE DES EMPLOYÉS
{{-- Tableau --}} @foreach($employes as $key => $i) @endforeach
Matricule Nom et Prénom N° Compte Direction Service
{{ $loop->iteration }} {{ $i->matricule ?? '-' }} {{ $i->name ?? '-' }} {{ $i->num_compte ?? '-' }} {{ $i->pseudo_dir ?? '-' }} {{$i->service_id == 0 ? '-' : $i->nom_service}}
{{-- Signature --}}
Fait à Bujumbura, le {{ date('d/m/Y') }}
{{-- Footer --}}