https://twill.io logo
Twill 3 class based blocks name
# ❓questions
d
Twill v3 question: How can I use new Block component in block editor? I created a block component: php artisan twill:make:componentBlock header.topbar And I want to use it in my Header module's block editor. Tried to this, or some other format, but not working:
Copy code
$form->add(
            BlockEditor::make()->blocks(['header.topbar'])
        );
h
You can check the internal name using
php artisan twill:list:blocks
d
Great, thank you! 🙂