figg1333
Change button label on create page
in the models resource create page (CreateModelName.php), you can overwrite the getFormActions, and add the label to the returned actions:
protected function getFormActions(): array
{
return [
$this->getCreateFormAction()->label('customCreateButton'),
...(static::canCreateAnother() ? [$this->getCreateAnotherFormAction()->label('customCreateAnotherButton')] : []),
$this->getCancelFormAction()->label('customCancelButton'),
];
}
4 replies