FilamentF
Filament3y ago
Sesh

How to disable select all in Table Builder?

I found a method to disable "Select all" for bulk actions in the admin panel: protected bool $shouldSelectCurrentPageOnly = true;

How can I use this function in the table builder?
Solution
This worked for me:
protected function shouldSelectCurrentPageOnly(): bool
{
  return true;
}
Was this page helpful?