1

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

1 Answer 1

3

You can use actions method to disable grid actions.

$grid->actions(function ($actions) {
    $actions->disableDelete();
    $actions->disableEdit();
});
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.