Please see the attached image. I want to disable or remove delete action in laravel encore admin.
Asked
Active
Viewed 3,959 times
1 Answers
2
You can use actions method to disable grid actions.
$grid->actions(function ($actions) {
$actions->disableDelete();
$actions->disableEdit();
});

Ansib Raza
- 388
- 2
- 3
- 11