@extends('layout') @section('title', 'Executive Workspace') @section('content')
{{ now()->format('l, d F Y') }}

Executive workspace

{{ $currentOrganization->north_star ?: 'A governed view of what matters, why it matters, and what requires action.' }}

Runtime operational Review cadence
Active operating cycle

{{ $activeCycle?->name ?? 'No active cycle' }}

{{ $activeCycle?->objective ?? 'Create a bounded proof cycle with an owner, outcome, evidence, and stop condition.' }}

@if($activeCycle)
{{ $activeCycle->starts_on->format('d M') }} — {{ $activeCycle->ends_on->format('d M Y') }}{{ $activeCycle->starts_on->diffInDays($activeCycle->ends_on) + 1 }}-day evidence window
@endif
@foreach([['Sense','evidence'],['Frame','issue'],['Decide','decision'],['Commit','commitment'],['Monitor','exception'],['Learn','review']] as [$stage,$type]) {{ $stage }}{{ $counts[$type] ?? 0 }}open @endforeach
Decision support

Executive briefing

Rules-based · AI deferred
@foreach($briefing as $item)
{{ $item['title'] }}

{{ $item['body'] }}

@endforeach
Authority queue

Decisions due

View all
North-star movement

Active outcomes

+ Add outcome
Evidence-backed

Key indicators

Manage KPIs
@forelse($metrics as $metric) @php($latest = $metric->measurements->first())
{{ $metric->name }}{{ $latest ? rtrim(rtrim(number_format((float)$latest->value, 2), '0'), '.') : '—' }}{{ $metric->unit }}{{ $metric->target ?: 'No target' }}
@empty
No governed KPI definitions yet.
@endforelse
Intervention

Open exceptions

Exception queue
@forelse($exceptions as $record) {{ $record->title }}{{ ucfirst($record->priority) }} · {{ $record->owner?->name ?? 'Owner missing' }}{{ $record->priority }} @empty
No unresolved exceptions are visible.
@endforelse
Accountability

Overdue records

@endsection