label('Descarcă PDF') ->icon('heroicon-m-document-arrow-down') ->color('gray') ->action(function () { /** @var WorkOrder $wo */ $wo = $this->record; $svc = app(WorkOrderPdfService::class); $pdf = $svc->generate($wo); return response()->streamDownload( fn () => print($pdf->output()), $svc->filename($wo) ); }), Actions\DeleteAction::make(), ]; } }