Remove "all" option from pagination for entire panel
I am aware I can just call
)->paginated([10, 25, 50, 100]);
on each table but that kinda sucks xD.. is there a away to do this? (should be possible to add to the PanelProvider or a config option?)Solution:Jump to solution
Yeah you can use the same global config like you can with inputs/columns https://filamentphp.com/docs/3.x/tables/advanced#global-settings
2 Replies
Solution
Yeah you can use the same global config like you can with inputs/columns https://filamentphp.com/docs/3.x/tables/advanced#global-settings
awesome, thanks!