Refresh Table after performed action in Widget

How do I refresh the List page of a resource after I performed an action in a Widget on the List page
Solution
add in your ListPage

use Livewire\Attributes\On;

#[On('updatePage')]
public function updatePage(): void
{
    //...
}


use in your action
$this->dispatch('updatePage');
Was this page helpful?