@props([ 'block', 'page' => null, 'pageState' => 'active', ]) @php /** @var \App\Models\PageBlock $block */ /** @var \App\Models\PreregistrationPage|null $page */ $c = $block->content ?? []; $url = (string) data_get($c, 'button_url', '#'); if ($pageState === 'expired' && $page !== null && filled($page->ticketshop_url)) { $url = $page->ticketshop_url; } $btnColor = (string) data_get($c, 'button_color', '#F47B20'); $style = (string) data_get($c, 'style', 'inline'); $flexClass = $style === 'stacked' ? 'flex-col gap-3' : 'flex-col gap-3 sm:flex-row sm:items-center sm:justify-between sm:gap-4'; @endphp
@if (filled(data_get($c, 'text')))

{{ data_get($c, 'text') }}

@endif