I am trying to hide ‘edit’ button from a trashed item just one CRUD, Copied update blade file into resources/views/vendor/backpack/crud/buttons/ and updated the first line
@if ($crud->hasAccess('update', $entry) && !$entry->trashed())
Is it possible to load the update blade with conditon(!$entry->trashed()) just one controller?
None of the other models has ‘deleted_at’ column.
laravel: 8.x
Backpack: 5.x