How disable Table create button?

disableTableCreateButton
Solution
// YourResource.php
public static function canCreate(): bool
{
  return false;  
}
Was this page helpful?