Level 28
https://voyager-slack-invitation.herokuapp.com/
Slack of voyager team.
Join slack and ask #help channel.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
i want to make some bulk action to laravel voyager admin panel like what it has as default name bulk delete . here is the image

i have added a new custom action and its like below :
public function massAction($ids)
{
$users = User::wherein('id',$ids)->get();
return Excel::download(new UsersExport($users),'users.xlsx');
}
but my question is that can i open a modal like Bulk Delete before sending the data to massAction exactly like bulk Delete thanks in advance
Please or to participate in this conversation.