> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Consumer Detail View

> A platform operator opens Jane's consumer record while helping a creditor support case.

## Real-World Example

A platform operator opens Jane's consumer record while helping a creditor support case. The portal should show enough account, payment, and communication history to investigate without exposing unrelated consumers.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Super Admin opens consumer record"] --> B["Portal loads consumer detail"]
    B --> C["Operator reviews account, payment, and communication context"]
    C --> D{"Change requested?"}
    D -->|Yes| E["Allowed support action follows account rules"]
    D -->|No| F["Record is reviewed only"]
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A,C actor;
    class B,E,F system;
    class D decision;
    class E outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should help platform users investigate consumer account issues across creditors when authorized.
* It should preserve payment history, schedule state, and communication context.
* It should apply the same safety rules as creditor support actions when edits are available.

## How It Should Not Work

* It should not expose consumer details to non-Super Admin users.
* It should not let support changes bypass payment, status, or communication rules.
* It should not mix records from different consumers with similar identifying details.

## Developer Notes

* Super Admin consumer detail can include soft-deleted records through route behavior.
* Use this page as the platform-support version of creditor consumer profile docs.

## Related App Areas

* `routes/superadmin.php`
* `app/Livewire/Creditor/ManageConsumers/ViewPage.php`
* `app/Livewire/Creditor/ManageConsumers/ListPage.php`
