How disable Table create button?

disableTableCreateButton
Solution:
```PHP // YourResource.php public static function canCreate(): bool { return false; ...
Jump to solution
3 Replies
Solution
BlackShadow
BlackShadow2y ago
// YourResource.php
public static function canCreate(): bool
{
return false;
}
// YourResource.php
public static function canCreate(): bool
{
return false;
}
_wbit
_wbitOP2y ago
thank you so much @blackshadownl
BlackShadow
BlackShadow2y ago
YW 👍

Did you find this page helpful?