@extends('layouts.dashboard') @section('title', 'Subscription Details') @section('content')
Amount
{{ $subscription->formatted_amount }}
Billing Frequency
{{ ucfirst($subscription->interval) }}
Start Date
{{ $subscription->start_date->format('M d, Y') }}
Next Payment Date
@if($subscription->next_payment_date && $subscription->isActive()) {{ $subscription->next_payment_date->format('M d, Y') }} @elseif($subscription->isCancelled()) Cancelled on {{ $subscription->cancelled_at->format('M d, Y') }} @else Not scheduled @endif
Plan
{{ $subscription->plan ? $subscription->plan->name : 'N/A' }}
Recipient
@if($subscription->elderly) {{ $subscription->elderly->full_name }} @else General Donation @endif
Payment Method
@if(isset($subscription->payment_details['authorization'])) {{ $subscription->payment_details['authorization']['brand'] ?? 'Card' }} ending in {{ $subscription->payment_details['authorization']['last4'] ?? '****' }} (expires {{ $subscription->payment_details['authorization']['exp_month'] ?? '**' }}/{{ $subscription->payment_details['authorization']['exp_year'] ?? '****' }}) @else Payment information not available @endif
| Date | Amount | Status | Transaction ID |
|---|---|---|---|
| {{ $donation->created_at->format('M d, Y') }} | {{ $donation->formatted_amount }} | @if($donation->payment_status === 'completed') Completed @elseif($donation->payment_status === 'pending') Pending @else {{ ucfirst($donation->payment_status) }} @endif | {{ $donation->transaction_id ?? 'N/A' }} |
No payment records found for this subscription.
You can cancel your subscription at any time by clicking the "Cancel Subscription" button. Your subscription will stop at the end of the current billing period.
Click the "Update Payment Method" button to update your card information. You can also have an update link sent to your email.
Your card will be charged automatically on the next payment date shown above, and then at the same frequency thereafter.
Yes, if you've cancelled your subscription, you can reactivate it by clicking the "Reactivate Subscription" button.
If you have any questions about your subscription or need assistance, our support team is here to help.
Contact Support