© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
bionary

How to Refresh Form in RelationManager?

I have a relationManager and I need to refresh the form data after an action from the Footer Bar executes.
    public function table(Table $table): Table
    {
        return $table
          ...
          ->actions([
                Tables\Actions\EditAction::make()
                    ->extraModalFooterActions([
                        \Filament\Tables\Actions\Action::make('do-this')
                            ->label('Do This')
                            ->action(function($record){
                                //1 Do something that updates $record
                                //2 Refresh form data

                        })
                    ]),
                Tables\Actions\DeleteAction::make(),
            ])
        ...
    public function table(Table $table): Table
    {
        return $table
          ...
          ->actions([
                Tables\Actions\EditAction::make()
                    ->extraModalFooterActions([
                        \Filament\Tables\Actions\Action::make('do-this')
                            ->label('Do This')
                            ->action(function($record){
                                //1 Do something that updates $record
                                //2 Refresh form data

                        })
                    ]),
                Tables\Actions\DeleteAction::make(),
            ])
        ...

Any ideas how to refresh the form after clicking the action?
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

Form Defocus in RelationManager
FilamentFFilament / ❓┊help
12mo ago
How to refresh form data?
FilamentFFilament / ❓┊help
16mo ago
Refresh RelationManager on dropdown
FilamentFFilament / ❓┊help
3y ago
How Add a widget to relationManager form
FilamentFFilament / ❓┊help
14mo ago