@php
$blocks = \A17\Twill\Facades\TwillBlocks::getBlockCollection()
->collect()
->reject(function ($block) {
return $block->compiled ?? false;
});
@endphp
@foreach ($blocks as $block)
@endforeach
{{-- The order here is important as the renderform above may regiser repeaters. --}}
@php
$names = $blocks
->pluck('component')
->values();
@endphp