如何从背包 Laravel 的 'Top' 堆栈中删除或隐藏 'Add' 按钮?

How to delete or hide the 'Add' button from the 'Top' stack in backpack Laravel?

我想从 Top 堆栈中隐藏按钮 Add 按钮?我尝试了 $this->crud->removeButton('create');$this->crud->removeButtonFromStack('create', 'top'); 但它不起作用。我不想使用 $this->crud->denyAccess('create'); 因为这会导致我在更新时出现问题。我怎样才能隐藏按钮?

我找到了解决方案。我在 setup() 中添加 $this->crud->removeButton('create') 而不是 setupListOperation().