@props(['block']) @php /** @var \App\Models\PageBlock $block */ $c = $block->content ?? []; $style = (string) data_get($c, 'style', 'line'); $spacing = (string) data_get($c, 'spacing', 'medium'); $py = match ($spacing) { 'small' => 'py-2', 'large' => 'py-6', default => 'py-4', }; @endphp