@props([ 'title' => 'Block Title', 'items' => [ ['value' => 'item1', 'icon' => '📍', 'label' => 'Item 1'], ], 'gridColumns' => [ 'default' => 5, 'tablet' => 3, 'mobile' => 2 ], 'initiallyOpen' => false, 'componentId' => null, 'disabled' => false, 'selected' => [], 'seq' => 0 ]) @php $uniqueId = $componentId ?? 'diary-block-' . uniqid(); @endphp
{{ $title }}
@foreach($items as $item)
{{ $item['icon'] }}
{{ $item['label'] }}
@endforeach
@foreach($selected as $item) @endforeach