@extends('layouts.dashboard') @section('title', 'My Subscriptions') @section('content')

My Subscriptions

@include('partials.alerts')
Active Recurring Donations
@if($subscriptions->count() > 0)
@foreach($subscriptions as $subscription) @endforeach
Date Amount Frequency Status Next Payment Recipient Actions
{{ $subscription->created_at->format('M d, Y') }} {{ $subscription->formatted_amount }} {{ ucfirst($subscription->interval) }} @if($subscription->isActive()) Active @elseif($subscription->isCancelled()) Cancelled @elseif($subscription->isPaused()) Paused @else {{ ucfirst($subscription->status) }} @endif @if($subscription->next_payment_date && $subscription->isActive()) {{ $subscription->next_payment_date->format('M d, Y') }} @elseif($subscription->isCancelled()) Cancelled @else Not scheduled @endif @if($subscription->elderly) {{ $subscription->elderly->full_name }} @else General Donation @endif View
{{ $subscriptions->links() }} @else
No Active Subscriptions

You don't have any recurring donations set up yet.

Make a Recurring Donation
@endif
About Recurring Donations
How It Works

Recurring donations automatically charge your payment method at the frequency you selected when setting up the donation. This provides consistent support to the elderly in need.

Payment Methods

You can update your payment method at any time by viewing a subscription and clicking "Update Payment Method". Your subscription will continue uninterrupted.

Cancelling

You can cancel a recurring donation at any time. Your support until that point will still be greatly appreciated.

Need Help?

If you have any questions about your recurring donations, please contact our support team.

@endsection