Disable createAnother in form footer
I'm in the bottom of the form, i want to hide the create another button, im trying to find it in the docs but i dont find it.
i've found this, but seems isnt what i want, cuz stays the same. :
(file
app/Filament/Resources/FormResource/Pages/ListForms.php
)
i also tried to create a fn called getFooterActions but nah4 Replies
Use
CreateAction::make()->disableCreateAnother()
'disableCreateAnother' is deprecated
i had to do this:
and not in the ListForms, but in the CreateForms file
You can also use
protected static bool $canCreateAnother = false;
in the create pageohh
ill try that too
oh yeah nice
thanks