@php $scope = $this->appliedScope(); $sections = $this->sections(); $emptyState = $this->calmEmptyState(); @endphp
Governance inbox

Governance inbox

This workspace decision surface routes you into the existing findings, operations, alerts, and review surfaces without introducing a second workflow state.

@if (filled($scope['workspace_label'] ?? null)) Workspace: {{ $scope['workspace_label'] }} @endif Scope: {{ $scope['family_label'] ?? 'All attention' }} Visible items: {{ $scope['total_count'] ?? 0 }} @if (filled($scope['tenant_label'] ?? null)) Tenant: {{ $scope['tenant_label'] }} @endif
@if ($this->hasTenantPrefilter())
The inbox is currently filtered to one tenant. Clear tenant filter
@endif
@if ($sections === [])

{{ $emptyState['title'] }}

{{ $emptyState['body'] }}

@if (filled($emptyState['action_label'] ?? null) && filled($emptyState['action_url'] ?? null))
{{ $emptyState['action_label'] }}
@endif
@else @foreach ($sections as $section)

{{ $section['label'] }}

{{ $section['count'] }}

{{ $section['summary'] }}

{{ $section['dominant_action_label'] }}
@if ($section['count'] === 0)
{{ $section['empty_state'] }}
@else
    @foreach ($section['entries'] as $entry)
  • @if (filled($entry['tenant_label'] ?? null))
    {{ $entry['tenant_label'] }}
    @endif
    {{ $entry['headline'] }} {{ $entry['status_label'] }}
    @if (filled($entry['subline'] ?? null))

    {{ $entry['subline'] }}

    @endif
    Open source
  • @endforeach
@endif
@endforeach @endif