protected function promptForm(Form $form): Form
{
return $form
->schema([
FilamentForms\Select::make('targetBot')
->label('Bots available')
->searchable()
->options(Prompt::all()->pluck('name', 'id'))
->default(Prompt::where('is_active', true)->pluck('name', 'id')),
FilamentForms\TextInput::make('prompt')
->label('Start Conversation')
->autofocus()
->autocomplete(false),
]);
}
protected function promptForm(Form $form): Form
{
return $form
->schema([
FilamentForms\Select::make('targetBot')
->label('Bots available')
->searchable()
->options(Prompt::all()->pluck('name', 'id'))
->default(Prompt::where('is_active', true)->pluck('name', 'id')),
FilamentForms\TextInput::make('prompt')
->label('Start Conversation')
->autofocus()
->autocomplete(false),
]);
}