Current Balance
{{ $user->credit_balance }}
Chapter Credits
${{ $plan['price'] }}
{{ $plan['credits'] }} Credits
Purchase| Date | Type | Description | Amount | Balance |
|---|---|---|---|---|
| {{ $credit->created_at->format('M d, Y H:i') }} | {{ ucfirst(str_replace('_', ' ', $credit->type)) }} | {{ $credit->description ?? '-' }} | {{ $credit->amount > 0 ? '+' : '' }}{{ $credit->amount }} | {{ $credit->balance_after }} |
| No transactions yet | ||||
| Date | Invoice | Credits | Amount | Status |
|---|---|---|---|---|
| {{ $payment->created_at->format('M d, Y') }} | {{ $payment->invoice_number ?? '-' }} | {{ $payment->credits_purchased }} | ${{ number_format($payment->amount, 2) }} | {{ ucfirst($payment->status) }} |
| No payments yet | ||||