> ## 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.

# Paid Accounts

> Jane completes the last payment on a settlement plan.

## Real-World Example

Jane completes the last payment on a settlement plan. The account should move to Paid Accounts so she can confirm it is no longer active and review payment history instead of being prompted to negotiate again.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Final payment succeeds"] --> B["Portal updates balance and status"]
    B --> C["Account moves to Paid Accounts"]
    C --> D["Consumer can review history or agreement details"]
    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,B system;
    class C,D outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show completed accounts after settlement or plan completion.
* It should preserve payment history and agreement context for consumer review.
* It should remove normal negotiation and payment setup prompts from paid accounts.

## How It Should Not Work

* It should not show a paid account as still requiring payment.
* It should not erase payment history after the status changes.
* It should not mark an account paid until payment completion rules have actually passed.

## Developer Notes

* This tab maps to settled.
* Payment completion may be driven by gateway callbacks, payment jobs, or settlement completion services.

## Related App Areas

* `app/Enums/ConsumerStatus.php`
* `app/Livewire/Consumer/PaymentHistory.php`
* `app/Livewire/Consumer/PaymentComplete.php`
* `app/Services/Consumer/PaymentSettlementCompletionService.php`
