@php $field = 'h-9 w-full rounded-md border border-line bg-inset px-3 text-sm text-ink placeholder:text-ink-4 focus:border-accent/40 focus:outline-none'; $label = 'mb-1 block font-mono text-[11px] uppercase tracking-wider text-ink-3'; $statusPill = ['ok' => 'online', 'warning' => 'warning', 'critical' => 'offline', 'expired' => 'offline', 'error' => 'offline', 'unknown' => 'pending']; @endphp
{{ __('certs.eyebrow') }}
{{ __('certs.subtitle') }}
{{ __('certs.no_endpoints_title') }}
{{ __('certs.no_endpoints') }}
{{ $ep->label ?: $ep->host }}
{{ $ep->host }}:{{ $ep->port }} @if ($c && ($c['ok'] ?? false) && ! is_null($c['daysLeft'] ?? null)) · @if ($c['daysLeft'] < 0) {{ __('certs.expired_since', ['days' => abs($c['daysLeft'])]) }} @elseif ($c['daysLeft'] === 0) {{ __('certs.expires_today') }} @else {{ __('certs.expires_in', ['days' => $c['daysLeft']]) }} @endif @elseif ($c && ! ($c['ok'] ?? false)) · {{ __('certs.check_error') }} @endif