@extends('admin.layout') @section('content') @if (session('generated_key'))
API Client Registered Successfully!

{{ session('success') }} Please copy this API key now. It is encrypted in the database and will NOT be shown again.

{{ session('generated_key') }}
@elseif (session('success'))
{{ session('success') }}
@endif

Wallet & Clients Control

Configure customized pricing rates, perform manual credits, and track escrow balances.

Registered Clients

{{ $stats['total_clients'] }}

Escrow Balance

₹{{ number_format($stats['total_balance'], 2) }}

Total Requests

{{ $stats['total_requests'] }}

Accumulated Revenue

₹{{ number_format($stats['total_revenue'], 2) }}

Partner Companies & API Rates

@forelse ($clients as $client) @empty @endforelse
Company Name Wallet Balance Pricing Configuration (Per Request) Actions
{{ $client->name }}
@if($client->email)
{{ $client->email }}
@endif
ID: {{ $client->id }} | Key Hash: {{ substr($client->api_key, 0, 10) }}...
₹{{ number_format($client->wallet_balance, 2) }} @if ($client->wallet_balance <= 10.00)
Low Balance
@endif
PAN: ₹{{ $client->pan_charge }} Adh Basic: ₹{{ $client->aadhaar_basic_charge }} Adh OTP: ₹{{ $client->aadhaar_otp_charge }} Adh Submit: ₹{{ $client->aadhaar_submit_charge }} Link Check: ₹{{ $client->aadhaar_pan_link_charge }} GST: ₹{{ $client->gst_charge }} Bank: ₹{{ $client->bank_charge }}
No client companies registered yet. Add one to get started!
@endsection