禁止批量删除

//方法一:
$grid->tools(function ($tools) {
$tools->batch(function ($batch) {
$batch->disableDelete();
});
});

//方法二:
$grid->batchActions(function ($batch) {
$batch->disableDelete();
});

posted @ 2023-04-19 10:06  星云惊蛰  阅读(9)  评论(0)    收藏  举报