@php
$logoExists = false;
$logoUrl = null;
$extensions = ['png', 'jpg', 'jpeg', 'svg'];
foreach ($extensions as $ext) {
if (file_exists(public_path('logo.' . $ext))) {
$logoExists = true;
$logoUrl = asset('logo.' . $ext) . '?v=' . filemtime(public_path('logo.' . $ext));
break;
}
}
@endphp
@if ($logoExists)
@endif
|
Your Photo is Ready!
|
Hai {{ $record->name }},
Terima kasih telah menggunakan photobooth kami.
Klik tombol di bawah untuk membuka halaman receipt dan menggunakan QR Code Anda.
|
|
✨ Open My Receipt
|
|
Link berlaku hingga
{{ \Carbon\Carbon::parse($record->expired_at)->format('d M Y') }}.
|
|
|
Jika tombol tidak berfungsi,
salin dan buka tautan berikut:
{{ $url }}
|
{{ config('app.name') }}
|