© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
pgferro

Display view in new tab

Hi all,
I have this BulkAction to print some labels:
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(),

Is there a way to open the view in a new tab ?
Thanks !!
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Open View Action in new tab?
FilamentFFilament / ❓┊help
2y ago
Table open url in new tab
FilamentFFilament / ❓┊help
3y ago
Downloable() in new Tab ?
FilamentFFilament / ❓┊help
2y ago
Open in new tab
FilamentFFilament / ❓┊help
2y ago