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

# Bill Pay Donations

> Operations needs to review donation activity for the month. Super Admin opens Bill Pay Donations and checks the records before monthly reporting is prepared.

## Real-World Example

Operations needs to review donation activity for the month. Super Admin opens Bill Pay Donations and checks the records before monthly reporting is prepared.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Donation activity occurs"] --> B["Donation record is available"]
    B --> C["Super Admin opens Bill Pay Donations"]
    C --> D["Operations reviews donation data"]
    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 actor;
    class B outcome;
    class C,D system;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show donation records to Super Admin.
* It should help support monthly donation review or reporting.
* It should keep donation activity distinct from creditor payment collections.

## How It Should Not Work

* It should not mix donation records with normal consumer debt payments.
* It should not hide donation records needed for reporting.
* It should not expose donation review to unauthorized users.

## Developer Notes

* Donation reports can involve scheduled monthly background work.
* Keep donation terminology distinct from creditor/consumer payment plan terminology.

## Related App Areas

* `app/Livewire/SuperAdmin/BillPayDonations`
* `app/Console/Commands/MonthlyDfaDonationReportCommand.php`
* `app/Jobs/SendMonthlyDfaDonationReportJob.php`
