@props(['data', 'size' => 120, 'position' => 'bottom-right', 'label' => 'Scan to view online']) @php $qrUrl = \App\Services\QRCodeService::generateUrl($data, $size); $positionClass = match($position) { 'top-left' => 'position: absolute; top: 10px; left: 10px;', 'top-right' => 'position: absolute; top: 10px; right: 10px;', 'bottom-left' => 'position: absolute; bottom: 10px; left: 10px;', 'bottom-right' => 'position: absolute; bottom: 10px; right: 10px;', 'header' => 'text-align: center; margin: 10px 0;', 'footer' => 'text-align: center; margin: 10px 0;', default => 'text-align: center; margin: 10px 0;' }; @endphp
QR Code @if($label)

{{ $label }}

@endif