© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
1 reply
ded7978

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);
    }
    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);
    }
miain.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

How to change the color of buttons
FilamentFFilament / ❓┊help
2y ago
Change location of notification pop up
FilamentFFilament / ❓┊help
3y ago
How to change colors of action buttons/links?
FilamentFFilament / ❓┊help
2y ago
Is it possible to change the Yes No Colours of Toggle Buttons?
FilamentFFilament / ❓┊help
9mo ago