Diagnostic recency across your visible workspace slice. This does not define governance health on its own.

@if ($operations === [])

{{ $emptyState['title'] ?? 'No recent operations yet' }}

{{ $emptyState['body'] ?? 'Workspace-wide activity will show up here once syncs, evaluations, or restores start running.' }}

@if (filled($emptyState['action_url'] ?? null))
{{ $emptyState['action_label'] ?? 'Open operations' }}
@endif
@else
@foreach ($operations as $operation) @php $destination = $operation['destination'] ?? null; $actionUrl = is_array($destination) ? ($destination['url'] ?? null) : ($operation['url'] ?? null); @endphp
{{ $operation['title'] }}
@if (filled($operation['tenant_label'] ?? null)) {{ $operation['tenant_label'] }} @endif
{{ $operation['status_label'] }} {{ $operation['outcome_label'] }}
@if (filled($operation['guidance'] ?? null))

{{ $operation['guidance'] }}

@endif
{{ $operation['started_at'] }}
@if (is_string($actionUrl) && $actionUrl !== '')
{{ $destination['label'] ?? 'Open operation' }}
@endif
@endforeach
@endif