© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
14 replies
Patie

Table update after action

Hi, im using filament as livewire components without full panel.

On user detail page I have user infolist component - there is section with headerActions (form for adding user documents) and user document table inside schema.

Section::make('Documents')
    ->id('documents')
    ->headerActions([
        Action::make('Add document')
            ->form($this->userDocumentForm->schema())
            ->action(function (array $data, User $user) {
                $this->userDocumentForm->action($data, $user);
            })
    ])
    ->schema([
        Livewire::make(UserDocumentTable::class, ['userId' => $this->user->id])->key('user-document-table'),
    ]),
Section::make('Documents')
    ->id('documents')
    ->headerActions([
        Action::make('Add document')
            ->form($this->userDocumentForm->schema())
            ->action(function (array $data, User $user) {
                $this->userDocumentForm->action($data, $user);
            })
    ])
    ->schema([
        Livewire::make(UserDocumentTable::class, ['userId' => $this->user->id])->key('user-document-table'),
    ]),


what is correct way to update user document table to show updated data after create (or edit/delete) in my case?

thank you!
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

Table Select update action
FilamentFFilament / ❓┊help
3y ago
Update rows in table (or table) after action on row
FilamentFFilament / ❓┊help
12mo ago
Export action update table rows after successful export
FilamentFFilament / ❓┊help
3y ago
Export Action - Update Table Rows
FilamentFFilament / ❓┊help
3y ago