Replies: 1 comment 2 replies
-
I think that it should already be possible using something like... BulkAction::make('touch')->action(function (Collection $records, Component $livewire) {
foreach ($records as $record) {
$record->touch();
$livewire->notify('success', "{$record->name} touched for compilation...");
}
})->icon('heroicon-o-cog')->deselectRecordsAfterCompletion(), I'm not sure if the notifications work well with modals or not though, you'll have to check 🤔 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to provide the user with a success notification when using BulkAction inside a table list. Just like in Nova.
Is it possible? Or is it a feature request?
Eg,
Beta Was this translation helpful? Give feedback.
All reactions