My Subscriptions

Manage your recurring support plans

Active Subscriptions

@forelse($subscriptions as $subscription)
@if($subscription->elderly && $subscription->elderly->profile_image)
{{ $subscription->elderly->full_name }}
@else
@endif

{{ $subscription->elderly ? $subscription->elderly->full_name : 'General Fund' }}

{{ $subscription->formatted_amount }} / {{ $subscription->formatted_interval }} {{ $subscription->formatted_status }}

Next payment: {{ $subscription->next_payment_date ? $subscription->next_payment_date->format('M d, Y') : 'N/A' }}

Started: {{ $subscription->start_date ? $subscription->start_date->format('M d, Y') : 'N/A' }}

@if($subscription->status === 'attention') Update Payment Email Link @endif @if($subscription->status === 'active') Update Card
@csrf
@endif @if($subscription->status === 'non-renewing')
@csrf
@endif

Payment History

@forelse($subscription->donation_history ?? [] as $donation) @empty @endforelse
Date Amount Status Receipt
{{ $donation->created_at->format('M d, Y') }} {{ $donation->formatted_amount }} {{ ucfirst($donation->status) }} @if($donation->receipt_url) View @else N/A @endif
No payment history available
@empty

You don't have any active subscriptions

Set up a recurring donation to provide consistent support to elderly in need

Set Up Recurring Donation
@endforelse

Managing Your Subscriptions

Understanding Subscription Statuses

  • Active

    Your subscription is currently active and will be charged on the next payment date.

  • Non-renewing

    Your subscription is active but won't be charged on the next payment date.

  • Attention

    There was an issue with your payment method. Please update your card details.

  • Completed

    Your subscription is complete and will no longer be charged.

  • Cancelled

    Your subscription has been cancelled and will no longer be charged.

Payment Issues?

If your subscription status is Attention, there was a problem with your payment method. This could be due to:

  • Expired card
  • Insufficient funds
  • Card declined by bank
  • Card details changed

You can update your payment method by clicking the "Update Payment" button on your subscription.

Benefits of Recurring Support

Consistent Support

Provide reliable, ongoing assistance to elderly individuals who need continuous care.

Simplified Giving

Set it and forget it - your support continues automatically without manual donations.

Greater Impact

Your recurring support allows for better planning and more effective assistance programs.

@if(session('success') || session('error') || session('info')) @endif