{{ number_format($allUsers, 0, '', ' ') }}

Count users

{{ $allBalance }} {{ $currency }}

Full balance

@if (! empty($data)) @foreach($data as $item) @endforeach
Full Name Type Verified Email Screen KYC Balance (EUR) SubMerchantId Created
{{ $item->surname }} {{ $item->name }} {{ $item->type }} @if (empty($item->email_verified_at)) not verified @else verified @endif @if ($item->setting_screen === 'finish') finish @elseif($item->setting_screen === 'second') {{ $item->setting_screen }} @else {{ $item->setting_screen }} @endif @if (empty($item->kyc_verified_at)) @if(empty($item->kyc->phone) || empty($item->kyc->address1)) empty @else {{ $item->kyc->status }} @endif @else approved @endif {{ number_format($item->total_balance ?? '0', 2, '.', '') }} {{ $item->subMerchantId ?? '-' }} ({{ (new \DateTime($item->created_at))->diff(now())->days }} days)
Loading...
@endif @empty($data) @endempty
@if (! empty($pagination)) {{ $pagination->links() }} @endif