Property [$tableFilters] not found on component
I am trying to retrieve the $tableFilters property from the Livewire instance (screenshot 1), but an error appears (screenshot 2), if I do dd() on $livewire the tableFilters property is there (screenshot 3). Please help me.
Solution:Jump to solution
Then your issue is with PHPStan, not Filament... I think you can replace the
Component $livewire
annotation with ListSupporters $livewire
.4 Replies
Have you tried
$livewire->tableFilters
?yes it works, but im using larastan,
$livewire->tableFilters
errorSolution
Then your issue is with PHPStan, not Filament... I think you can replace the
Component $livewire
annotation with ListSupporters $livewire
.thanks..