I am using the Filament\Forms\Components\Builder and already have a lot of Blocks.
Is there a way, to group Blockssomehow in the Picker? And can I add a search/textfilter in the picker?
First I thought I could do it by changing it to
Builder::make($name)
->addAction(fn(Action $action) => $action
->icon('heroicon-m-plus')
->schema([
TextInput::make("xx"),
])
)
The Icon is set correclty, but schema does nothing. I guess its been overwritten bite Builder.