{{ $subscription->elderly->bio ?? 'No bio available.' }}
{{ $subscription->subscription_code }}
{{ $subscription->formatted_amount }}
{{ $subscription->formatted_interval }}
{{ $subscription->start_date ? $subscription->start_date->format('M d, Y') : 'N/A' }}
{{ $subscription->next_payment_date ? $subscription->next_payment_date->format('M d, Y') : 'N/A' }}
@if(isset($subscription->payment_details['authorization']['card_type'])) {{ ucfirst($subscription->payment_details['authorization']['card_type']) }} ending in {{ $subscription->payment_details['authorization']['last4'] ?? '****' }} @else Card on file @endif
@if(isset($subscription->payment_details['most_recent_invoice']['description'])) {{ $subscription->payment_details['most_recent_invoice']['description'] }} @else There was an issue with your payment method. Please update your card details to continue your subscription. @endif
| Date | Amount | Status | Payment Method | Receipt |
|---|---|---|---|---|
| {{ $donation->created_at->format('M d, Y') }} | {{ $donation->formatted_amount }} | {{ ucfirst($donation->status) }} | @if(isset($donation->payment_details['authorization']['card_type'])) {{ ucfirst($donation->payment_details['authorization']['card_type']) }} ending in {{ $donation->payment_details['authorization']['last4'] ?? '****' }} @else Card payment @endif | @if($donation->receipt_url) View @else N/A @endif |
| No payment history available | ||||
Update your payment method to ensure uninterrupted support.
@if($subscription->status === 'active') Your subscription is currently active and will be charged on {{ $subscription->next_payment_date ? $subscription->next_payment_date->format('M d, Y') : 'the next payment date' }}. @elseif($subscription->status === 'attention') Your subscription requires attention. Please update your payment method to continue your support. @elseif($subscription->status === 'cancelled') Your subscription has been cancelled. You can reactivate it at any time. @elseif($subscription->status === 'non-renewing') Your subscription is active but will not renew on the next payment date. @elseif($subscription->status === 'completed') Your subscription has been completed. Thank you for your support! @endif