Closed
Description
- Laravel Version: 7
- Nova Version: 3.15
- PHP Version: 7.4
Reposted from #322
Description:
The "Delete selected" option is shown when clicking "Select all matching" in the resource index, even when the user is actually not allowed to delete anything (see images below).
Detailed steps to reproduce the issue on a fresh Nova installation:
Set up a Resource with disabling Delete:
public function authorizedToDelete(Request $request)
{
return false;
}
use the select drop down to reproduce the behaviour