Form Actions (Create and Cancel)
Can I modify the style of those actions. (label and sequence)
![No description](https://cdn.answeroverflow.com/1285878175632461836/Screenshot_2024-09-18_111715.png)
2 Replies
Just override them?
There are some methods on the form class too, with $form->saveActionLabel() or similar, your IDE should show them on auto complete?
yeah I just found them
protected function getFormActions(): array
{
return [
$this->getCancelFormAction(),
$this->getCreateFormAction(),
];
}
Thank you