Change the location of the buttons
How can I put the "Send & Submit" button next to the "Create" button. I use getFormActions for "Send and Submit" actions.
protected function getFormActions(): array
{
$actions[] = \Filament\Pages\Actions\Action::make('send_and_submit')
->label('Send & Submit')->action(function (){
//some functions
});
return array_merge(parent::getFormActions(),$actions);
}
1 Reply
Don't merge actions then. Make full array of them