getRecord(); $related = OperationRunLinks::related($run, $tenant); $actions = []; foreach ($related as $label => $url) { $actions[] = Actions\Action::make(Str::slug($label, '_')) ->label($label) ->url($url) ->openUrlInNewTab(); } if (empty($actions)) { return []; } return [ Actions\ActionGroup::make($actions) ->label('Open') ->icon('heroicon-o-arrow-top-right-on-square') ->color('gray'), ]; } }