@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)
{{ $operation['title'] }}
@if (filled($operation['tenant_label'] ?? null)) {{ $operation['tenant_label'] }} @endif
{{ $operation['status_label'] }} {{ $operation['outcome_label'] }}
{{ $operation['started_at'] }}
@endforeach
@endif