@section('title', __('My Wallet'))
{{ __('Available Balance') }}
{{ currencyFormat($wallet->balance) }}
{{ currencyFormat($lastCredit->amount) }}
{{ $lastCredit->ref }}
{{ $lastCredit->created_at->diffForHumans() }}
{{ __('No credit transactions yet') }}
@endif{{ currencyFormat($lastDebit->amount) }}
{{ $lastDebit->ref }}
{{ $lastDebit->created_at->diffForHumans() }}
{{ __('No debit transactions yet') }}
@endif| {{ __('S/N') }} | {{ __('Amount') }} | {{ __('Reference') }} | {{ __('Status') }} | {{ __('Type') }} | {{ __('Created At') }} | {{ __('Last Updated') }} |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ currencyFormat($transaction->amount) }} | {{ $transaction->ref }} | {{ ucfirst(__($transaction->status)) }} | {{ __($transaction->is_credit ? 'Credit' : 'Debit') }} | {{ $transaction->created_at }} | {{ $transaction->updated_at }} |
| {{ __('No transactions found') }} | ||||||