Please see the attached image. I want to disable or remove delete action in laravel encore admin.
You can use actions method to disable grid actions.
$grid->actions(function ($actions) { $actions->disableDelete(); $actions->disableEdit(); });