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

# Cancelled Agreements

> Jane cancels a payment plan and later needs a copy of the cancelled agreement.

## Real-World Example

Jane cancels a payment plan and later needs a copy of the cancelled agreement. The portal should let her search and view the cancelled agreement PDF without reopening the cancelled plan.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Consumer opens Cancelled Agreements"] --> B["Portal loads cancelled plan agreements"]
    B --> C["Consumer searches or selects an agreement"]
    C --> D["Portal displays agreement PDF"]
    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,D system;
    class D outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show cancelled agreement records tied to the authenticated consumer.
* It should support searching and viewing agreement documents.
* It should preserve historical agreement access even after the plan is no longer active.

## How It Should Not Work

* It should not show agreements for another consumer or creditor account.
* It should not turn cancelled agreement viewing into active plan management.
* It should not remove documents that consumers need for records.

## Developer Notes

* This page supports historical review, not plan reactivation.
* Cancelled Plan in My Accounts and Cancelled Agreements are related but not identical views.

## Related App Areas

* `routes/consumer/index.php`
* `app/Livewire/Consumer/CancelledPlanAgreements.php`
* `app/Livewire/Consumer/Traits/Agreement.php`
