Replacement for `config('filament.layout.forms.actions.alignment')` in V3?
Perhaps I just missed it. but is there any replacement for the
config('filament.layout.forms.actions.alignment')
in V3?
Thanks!2 Replies
Possibly
$formActionsAlignment
:
https://github.com/filamentphp/filament/blob/3.x/packages/panels/src/Pages/BasePage.php#L36Thanks! That does seem to be a variable per-page instead of a global value from the config.
On the other hand, realize it is a static variable, so
Page::formActionsAlignment(...)
should work globally
Hmm, thanks, gonna use that then!