label('چاپ لیبل') ->icon('heroicon-o-printer') ->color('success') ->url(fn ($record) => route('shipments.pdf.label', $record)) ->openUrlInNewTab(), Actions\Action::make('download_awb') ->label('دانلود AWB') ->icon('heroicon-o-document-text') ->color('warning') ->url(fn ($record) => route('shipments.pdf.awb', $record)) ->openUrlInNewTab(), Actions\Action::make('download_invoice') ->label('دانلود INVOICE') ->icon('heroicon-o-currency-dollar') ->color('info') ->url(fn ($record) => route('shipments.pdf.invoice', $record)) ->openUrlInNewTab(), ]; } }