Compare the current tenant state against the assigned baseline profile to detect drift.
@if (filled($profileName))
Baseline Profile: {{ $profileName }} @if ($snapshotId) Snapshot #{{ $snapshotId }} @endif
@endif @if ($state === 'no_tenant') No tenant selected
{{ $message }}
@elseif ($state === 'no_assignment') No baseline assigned
{{ $message }}
@elseif ($state === 'no_snapshot') No snapshot available
{{ $message }}
@elseif ($state === 'comparing')
Comparing…
{{ $message }}
@if ($this->getRunUrl()) View operation run @endif @elseif ($state === 'idle') Ready to compare
{{ $message }}
@elseif ($state === 'ready') @if ($findingsCount !== null && $findingsCount > 0)
{{ $findingsCount }} {{ Str::plural('finding', $findingsCount) }} @if (($severityCounts['high'] ?? 0) > 0) {{ $severityCounts['high'] }} high @endif @if (($severityCounts['medium'] ?? 0) > 0) {{ $severityCounts['medium'] }} medium @endif @if (($severityCounts['low'] ?? 0) > 0) {{ $severityCounts['low'] }} low @endif
@if ($this->getFindingsUrl()) View findings @endif @else No drift detected @if (filled($message))
{{ $message }}
@endif @endif @if ($this->getRunUrl()) View last run @endif @endif