Widget tables - How to display results total and advanced navigation
Hi ! How can I add results total and advanced navigation similar to others table in my application ?
1 Reply
This is what I'm talking about :
Still searching for a solution 🤚
I found a solution. Make a custom BaseTableWidget and override the
paginateTableQuery()
by copying the base method from the Filament\Tables\Concerns\CanPaginateRecords
trait :
Then, in your widget extends it, add ->extremePaginationLinks()
to your table and be sure the widget is large enough to allow the pagination to be displayed.