@extends('layout') @section('title', 'Cadence & Cycles') @section('content')
Governed cadence

Operating cycles

One bounded objective, evidence window, owner set, and decision at a time.

@if(auth()->user()->canAtlas('cycles.manage'))@endif
@forelse($cycles as $cycle)
{{ ucfirst($cycle->status) }}@if($cycle->is_active) Active@endif

{{ $cycle->name }}

{{ $cycle->objective }}

Window
{{ $cycle->starts_on->format('d M') }} — {{ $cycle->ends_on->format('d M Y') }}
Records
{{ $cycle->records_count }}
@if(!$cycle->is_active && auth()->user()->canAtlas('cycles.manage'))
@csrf
@endif
@empty

No operating cycles

Create the 8–12 week Customer Zero proof cycle defined in the roadmap.

@endforelse
@if(auth()->user()->canAtlas('cycles.manage'))
@csrf
Evidence window

Create operating cycle

@endif @endsection