Stubbed out concept for how to handle bulk actions procedurally.
Extend the BulkAction class with a minimum of $name, $model and handle() method.
Create a POST able endpoint like applicaitons/bulk-edit/{action}
Post data with an ids
key that is an array of ids. optionally post a fields
key to include any custom field data to pass along to your handler.
ON the frontend you can handle the success and error responses and toast the message.
On success (for datatables) you can call .draw()
on the table var.