This subscription is active and will expire in {{ $daysRemaining }} {{ Str::plural('day', $daysRemaining) }} ({{ $subscription->ends_at->format('M d, Y') }}).
@elseif($daysRemaining === 0)This subscription expires today ({{ $subscription->ends_at->format('M d, Y') }}).
@elseThis subscription has expired {{ abs($daysRemaining) }} {{ Str::plural('day', abs($daysRemaining)) }} ago ({{ $subscription->ends_at->format('M d, Y') }}) but is still marked as active.
@endif @elseif($subscription->status === 'cancelled')This subscription was cancelled on {{ $subscription->cancelled_at ? $subscription->cancelled_at->format('M d, Y') : 'unknown date' }}.
@elseif($subscription->status === 'expired')This subscription expired on {{ $subscription->ends_at->format('M d, Y') }}.
@elseThis subscription is inactive. It was scheduled to run from {{ $subscription->starts_at->format('M d, Y') }} to {{ $subscription->ends_at->format('M d, Y') }}.
@endifThis action will extend the subscription without charging the customer. Use this for customer service, promotional extensions, or fixing subscription issues.
This action will charge the customer's default credit card and extend their subscription.
| ID | Amount | Status | Discounted | Date |
|---|---|---|---|---|
| {{ $transaction->id }} | ${{ number_format($transaction->amount, 2) }} | @if($transaction->status === 'success') @elseif($transaction->status === 'failed') @else @endif {{ ucfirst($transaction->status) }} | @if($transaction->is_discounted) Yes @else No @endif | {{ $transaction->created_at->diffForHumans() }} |
No payment transactions found
This subscription has no associated payment records.