how to trigger notification on a custom bulkaction?
Solution:Jump to solution
you can just move notification to action like this
```php
->action(function (Collection $records) {
$records->each(function (User $user) {
$user->update(['is_active' => !$user->is_active]);...
2 Replies