SoFunction
Updated on 2025-04-04

Methods to prohibit editing and deletion of a row in the list in laravel-admin

As shown below:

$grid->actions(function (Grid\Displayers\Actions $actions) {
  if ($actions->getKey() == 1) {
    $actions->disableDelete();
  }
});

Disable list deletion operation

$grid->tools(function (Grid\Tools $tools) {
  $tools->batch(function (Grid\Tools\BatchActions $actions) {
    $actions->disableDelete();
  });
});

or:

$grid->actions(function ($actions) {

  //Close the line operation Delete
  $actions->disableDelete();

});

The above method for prohibiting editing and deletion of a certain line in the list in laravel-admin is all the content I share with you. I hope you can give you a reference and I hope you support me more.