Wallet Balance

{{ $wallet->currency }} {{ number_format($wallet->balance) }}

Funds are used for GTS orders and delivery services.

@if($depositEnabled && $methods->isNotEmpty())
@csrf
@else
{{ $depositEnabled ? 'No active payment account is available yet. Please contact support.' : 'GTS deposit requests are temporarily disabled by admin.' }}
@endif
@forelse($methods as $method)
{{ $method->name }}Active

Account Title{{ $method->account_title ?: 'MGG Agency' }}

Account / IBAN{{ $method->account_number ?: 'Ask admin for account number' }}

@if($method->bank_name)

Bank{{ $method->bank_name }}

@endif @if($method->instructions){{ $method->instructions }}@endif @if($method->qr_code)View QR Code@endif
@empty
Payment AccountsActive deposit accounts will show here when admin enables them.
@endforelse

Wallet Transactions

Credit requests and order deductions.

PendingWaiting for admin approval. CompletedApplied to your wallet balance. DebitOrder charge deduction.
@forelse($wallet->transactions as $transaction) @empty @endforelse
TypeAmountMethodReferenceProofStatusDate
{{ str($transaction->type)->headline() }} {{ $wallet->currency }} {{ number_format($transaction->amount) }} {{ $transaction->paymentMethod->name ?? '-' }} {{ $transaction->reference ?: '-' }} @if ($transaction->proof_path) View @else - @endif {{ str($transaction->status)->headline() }} {{ $transaction->created_at->format('M j, Y') }}
No wallet transactions yet.