Adding table to Livewire Component
I am adding a filament table to a livewire component, and just wanted to know how I can get the pagination and display limit to work



per pagefi-ta-***return $table
->query($query)
->columns([
...
])
->paginated([5, 10, 25, 50, 100])
->defaultPaginationPageOption(5);