|
@if(file_exists(public_path('images/logo-mmpv.png')))
@php
$logoPath = public_path('images/logo-mmpv.png');
$logoData = base64_encode(file_get_contents($logoPath));
$logoMime = mime_content_type($logoPath);
$base64Logo = 'data:' . $logoMime . ';base64,' . $logoData;
@endphp
M
@endif
|
MISSION MONDIALE
DE LA PAROLE DE VIE
Les Rachetes de l'Eternel
|
{{ $member->membership_number }}
|
|
MEMBRE
{{ strtoupper($member->full_name) }}
EGLISE LOCALE
{{ $member->church->name }}
{{ $member->church->city }}, {{ $member->church->country }}
Membre depuis {{ $member->registration_date ? $member->registration_date->format('d/m/Y') : date('d/m/Y') }}
|
@if($member->photo && file_exists(storage_path('app/public/' . $member->photo)))
@php
$photoPath = storage_path('app/public/' . $member->photo);
$imageData = base64_encode(file_get_contents($photoPath));
$imageMime = mime_content_type($photoPath);
$base64Image = 'data:' . $imageMime . ';base64,' . $imageData;
@endphp
|