BulkAction::make('print_labels')
->label('Stampa Selezionati')
->icon('heroicon-o-printer')
->color('success')
->action(function (Collection $records) {
$ids = $records->pluck('id')->toArray();
$url = route('print-labels', ['ids' => implode(',', $ids)]);
return redirect()->away($url);
})
->deselectRecordsAfterCompletion(),
BulkAction::make('print_labels')
->label('Stampa Selezionati')
->icon('heroicon-o-printer')
->color('success')
->action(function (Collection $records) {
$ids = $records->pluck('id')->toArray();
$url = route('print-labels', ['ids' => implode(',', $ids)]);
return redirect()->away($url);
})
->deselectRecordsAfterCompletion(),