1

Please see the attached image. I want to disable or remove delete action in laravel encore admin.Please see hilighted area in image

Muhammad Muzamil
  • 1,013
  • 2
  • 18
  • 25

1 Answers1

2

You can use actions method to disable grid actions.

$grid->actions(function ($actions) {
    $actions->disableDelete();
    $actions->disableEdit();
});
Ansib Raza
  • 388
  • 2
  • 3
  • 11