Wallet Module

Deposit form

Wallet Balance : {{ currency($wallet_histories->where('payment_status', 'success')->sum('amount')) }}

@forelse ($wallet_histories as $index => $wallet_history) @empty @endforelse
{{ __('SN') }} {{ __('Amount') }} {{ __('Gateway Name') }} {{ __('Transaction') }} {{ __('Deposit At') }} {{ __('Status') }}
{{ ++$index }} {{ currency($wallet_history->amount) }} {{ $wallet_history->payment_gateway }} {{ $wallet_history->transaction_id }} {{ $wallet_history->created_at->format('H:iA, d M Y') }} @if ($wallet_history->payment_status == 'success') success @elseif ($wallet_history->payment_status == 'rejected') rejected @else pending @endif