@if(ContentManager::hasAnyBlocks('QR Code Types: title'))

{!! ContentManager::contentBlocks('QR Code Types: tag') !!}

{!! ContentManager::contentBlocks('QR Code Types: title') !!}

{!! ContentManager::contentBlocks('QR Code Types: text') !!}

@foreach (App\Models\QRCode::getTypes() as $type) @php $title = ContentManager::contentBlocks("QR Code Types ($type): title"); $title = trim($title); if (empty($title)) continue; @endphp

{!! $title !!}

@php $badge = trim(ContentManager::contentBlocks("QR Code Types ($type): badge")); $badge = empty($badge) ? null : $badge; @endphp {!! $badge ?? t('Static') !!}
{!! ContentManager::contentBlocks("QR Code Types ($type): text", noParagraph: false) !!}
@endforeach
{{ t('Show more types') }}
@endif