© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
4 replies
Wannes

Mount action after another action

Hi,

Is it possible to open a new action form when pressing "Send" on the first one?
After I sign a document via a modal, a popup should display to send an email.

Yet I cant figure out how to do this, this is as far as I get, the second modal opens, but closes a second after.

SignAction::make('signTeamLead')
    ->arguments([
        'prefix' => 'team_leader',
    ])
    ->label(__('resources/startup-sheets.sign_team_lead'))
    ->after(function ($livewire) {

        $this->unmountAction();

        $this->mountAction('sendStartupSheetMail');

    }),
SignAction::make('signTeamLead')
    ->arguments([
        'prefix' => 'team_leader',
    ])
    ->label(__('resources/startup-sheets.sign_team_lead'))
    ->after(function ($livewire) {

        $this->unmountAction();

        $this->mountAction('sendStartupSheetMail');

    }),
Solution
Do you mean,
replaceMountedAction
replaceMountedAction
?
https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component#chaining-actions
Adding an action to a Livewire component - Actions - Filament
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Call action after page load to table mount action
FilamentFFilament / ❓┊help
2y ago
Mount action from resource
FilamentFFilament / ❓┊help
15mo ago
Action inside Another Action
FilamentFFilament / ❓┊help
2y ago
Open an action from another action
FilamentFFilament / ❓┊help
3y ago