@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
{{ config('app.name', 'Photobooth') }}
Nota Transaksi
{{ \Carbon\Carbon::parse($record->created_at)->format('d/m/Y H:i') }}
{!! SimpleSoftwareIO\QrCode\Facades\QrCode::size(180)->generate($record->value) !!}
Scan untuk menggunakan
photo box
Terima kasih
{{ config('app.url', url('/')) }}