如何禁用 grocery_crud 中的特定删除按钮

How to disable a specific delete button in grocery_crud

在我的用户管理页面,我想禁用我的超级管理员帐户的删除按钮,使其无法删除。我使用 ion_auth 进行身份验证,grocery_crud 用于我的 crud 函数。我怎样才能做到这一点?有什么帮助吗? :)

我遇到了同样的问题,我知道一个问题。

创建 superadmin userid 1 并在 php 部分检查 userid = 1 是否像这样

$user_id = $this->ion_auth->user()->row()->id;
if($user_id == 1){
// this is superadmin do not delete
}else{
// your delete functions
}