© 2026 Hedgehog Software, LLC

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

Method to handle the Submit button on an action with Wizard Steps

when using steps() method to show a wizard on an action, is action() method still the handler for when the Submit button is clicked on the last step? Here is the code that I have

 return Action::make('create')
            ->label('New Job Listing')
            ->extraAttributes([
                'class' => 'bg-gradient-purple-left'
            ])
            ->steps($this->getCreateActionSchemaForWizard())
            ->skippableSteps(true)
            ->action(fn() => ray(func_get_args()));
 return Action::make('create')
            ->label('New Job Listing')
            ->extraAttributes([
                'class' => 'bg-gradient-purple-left'
            ])
            ->steps($this->getCreateActionSchemaForWizard())
            ->skippableSteps(true)
            ->action(fn() => ray(func_get_args()));


Nothing seems to happen on clicking the Submit button.
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

Wizard with depending steps in an action
FilamentFFilament / ❓┊help
3y ago
Wizard submit button
FilamentFFilament / ❓┊help
3y ago
Hide submit button on wizard
FilamentFFilament / ❓┊help
2y ago
Action button (submit) on infolist
FilamentFFilament / ❓┊help
2y ago