© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
3 replies
Crylar

Is it possible to refresh table content on action?

I have a custom action -

                Tables\Actions\Action::make('status.confirm')
                    ->button()
                    ->label('Confirm Order')
                    ->color('success')
                    ->action(function (Order $record) {
                        $record->status = OrderStatus::CONFIRMED;
                        $record->save();
                    })->visible(fn (Order $record) => $record->status == OrderStatus::PAID),
                Tables\Actions\Action::make('status.confirm')
                    ->button()
                    ->label('Confirm Order')
                    ->color('success')
                    ->action(function (Order $record) {
                        $record->status = OrderStatus::CONFIRMED;
                        $record->save();
                    })->visible(fn (Order $record) => $record->status == OrderStatus::PAID),


I would like to somehow trigger a table refresh to reflect a new update for the record.
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

manually refresh table content
FilamentFFilament / ❓┊help
16mo ago
table action modal form refresh?
FilamentFFilament / ❓┊help
2y ago
Refresh table contents with Action
FilamentFFilament / ❓┊help
2y ago
Is it possible to change action on row click?
FilamentFFilament / ❓┊help
3y ago