Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Pplan's avatar
Level 1

Refresh filament table component

Hi, I have a Livewire component page with some buttons and a Filament Table component. How can I refresh the Table from one of the buttons on the view? Can anyone put me in the right direction to solve the problem?

Thanks in advance!

0 likes
2 replies
axelvds's avatar

You could use: action (function ($data, $livewire): void { $livewire->resetTable(); })

jaseofspades88's avatar

You're dealing with Livewire components so you can simply emit an event from your action and place an event listener on the component.

    protected $listeners = [
        'example' => '$refresh',
    ];

	Action::make()
		->action(function () {
			$this->dispatch('example');
		})

Please or to participate in this conversation.