Get table data from header action.
I have a custom table header action .How can I access the table data from the action() method of the table header action? Tried to access it from the $livewire property like so but can't really get it .
action(function (Component $livewire) {
dd($livewire);
})Action::make('test')
->action(fn($data, $livewire) => dd($livewire->getFilteredTableQuery()->get())),