@if ($fundError) @endif @if (session('status') === 'funding-success')
Wallet funded successfully.
@endif
@foreach (['fund' => 'Fund Wallet', 'history' => 'Funding History'] as $tab => $label) @endforeach
@if ($activeTab === 'fund')

Your dedicated account number

Transfer to this account any time — it's permanently linked to your wallet.

@if ($this->virtualAccount)

{{ $this->virtualAccount->account_number }}

{{ $this->virtualAccount->bank_name }} · {{ $this->virtualAccount->account_name }}

@else @endif

Or pay with card

Minimum ₦{{ number_format($minimumKobo / 100, 2) }} per funding.

@error('amount')

{{ $message }}

@enderror
@else
@forelse ($this->fundingHistory as $deposit)

{{ $deposit->source === 'virtual_account' ? 'Bank transfer' : 'Card payment' }}

{{ $deposit->created_at->format('M j, Y g:ia') }}

₦{{ number_format($deposit->amount_kobo / 100, 2) }}

@empty

No funding history yet.

@endforelse
{{ $this->fundingHistory->links() }}
@endif