+ @if (str_starts_with($row['url'], 'https://') && ($forceHttpsRedirects[$row['service_application_id']] ?? true))
+ HTTP → HTTPS
+ @endif
+ @if (in_array($rowDirection, ['www', 'non-www'], true))
+ {{ $rowDirection === 'www' ? 'non-www → www' : 'www → non-www' }}
+ @elseif (! str_starts_with($row['url'], 'https://') || ! ($forceHttpsRedirects[$row['service_application_id']] ?? true))
+ No redirects
+ @endif
+ Port {{ $row['internal_port'] ?? 'missing' }}
+ {{ $isNoindexed ? 'Noindex' : 'Indexable' }}
+
@if ($row['dns_status'] === 'failed')
@@ -143,7 +156,7 @@ class="min-w-0 flex-1 truncate text-[13px] text-black underline decoration-neutr
@endif
+
@can('update', $service)