@extends('layouts.app') @section('title','Regular Donations') @section('content')

Regular Donations

Manage your recurring contributions and stop them when needed.

@if($recurring->isEmpty())
No active regular donations yet.
@endif @foreach($recurring as $regular)
{{ $regular->project?->title ?? 'General Fund' }}

Amount: ৳{{ number_format($regular->amount, 2) }} | Frequency: {{ ucfirst($regular->frequency) }}

Status: {{ ucfirst($regular->status) }}

Next: {{ $regular->next_run?->format('M d, Y') }}

@csrf @method('PATCH')
@endforeach
Need Help?

Contact our support desk for assistance or update your payment channel.

Contact Us
@endsection