@extends('layout') @section('title', 'Connected Workflows') @section('content')
One connected operating system

Connected workflows

All three Customer Zero workflows share the same relationships, decisions, projects, money, evidence, and audit history.

Executive workspace
@foreach(\App\Enums\WorkflowType::cases() as $workflow) @php($data = match($workflow) { \App\Enums\WorkflowType::ExecutiveReview => $pulse['executive'], \App\Enums\WorkflowType::LeadToCash => $pulse['lead_to_cash'], \App\Enums\WorkflowType::ProjectDelivery => $pulse['project_delivery'], })
{{ str($workflow->value)->replace('-',' ')->title() }}

{{ $workflow->label() }}

{{ $workflow->description() }}

@foreach($workflow->stages() as $stage){{ $stage }}@endforeach
@foreach($data as $label => $value)
{{ str($label)->replace('_',' ')->title() }}{{ is_float($value) ? number_format($value, 0) : $value }}
@endforeach
@endforeach
Deterministic financial truth

Connected financial pulse

Invoices, cleared collections, project costs, and outstanding value are calculated from source records—not manually typed dashboard totals.

@foreach(['invoiced','collected','expenses','net_cash','outstanding'] as $metric)
{{ str($metric)->replace('_',' ')->title() }}
{{ number_format($pulse['financial'][$metric], 0) }} {{ $pulse['financial']['currency'] }}
@endforeach
@endsection