Dashboard

Welcome back, {{ auth()->user()->name }}{{ auth()->user()->company_name ? ' • ' . auth()->user()->company_name : '' }}

Merchant ID
{{ auth()->user()->merchant_id ?? 'N/A' }}
@php $kybSubmitted = (bool) optional($kyb)->submitted_at; $hasSettlement = (bool) (optional($kyb)->settlement_account_number && optional($kyb)->settlement_bank_id && optional($kyb)->settlement_account_name); @endphp @if (!$kybSubmitted || !$hasSettlement)
Complete your onboarding to unlock payouts and smooth operations.
@if (!$kybSubmitted) KYB not submitted. @else Settlement account not completed. @endif
Continue Onboarding
@endif
Settlement Account
{{ $hasSettlement ? (optional($kyb)->settlement_bank_name ?? 'Settlement') : 'Not configured' }}
{{ $hasSettlement ? 'READY' : 'ACTION' }}
Account Name
{{ $hasSettlement ? (optional($kyb)->settlement_account_name ?? '-') : '-' }}
Account Number
{{ $hasSettlement ? (optional($kyb)->settlement_account_number ?? '-') : '-' }}
Virtual Account
{{ $virtualAccount?->bank_name ?? 'Not generated' }}
{{ $virtualAccount ? 'ACTIVE' : 'NONE' }}
Account Name
{{ $virtualAccount?->account_name ?? '-' }}
Account Number
{{ $virtualAccount?->account_number ?? '-' }}

Recent Gateway Transactions

View all
@forelse ($recentGatewayTransactions as $tx) @empty @endforelse
Reference Amount Status Method
{{ $tx->reference }} ₦{{ formatNumber(($tx->amount ?? 0) / 100) }} {{ strtoupper($tx->status) }} {{ strtoupper($tx->method) }}
No gateway transactions yet.
Dashboard