@extends('layouts/contentNavbarLayout') @section('title', 'Admin Dashboard') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')
Admin Control Center

Welcome back, {{ $username }} 👋

Monitor transactions, balances, service charges, user activity and operational health from one premium dashboard built for speed and clarity.

{{ \Carbon\Carbon::now()->format('l, d M Y') }} @if ($email) {{ $email }} @endif Total Users: {{ $total_users ?? 0 }}
Active Users: {{ $active_users ?? 0 }}
Payout Balance: ₹ {{ number_format($total_payout_balance ?? 0, 2) }}
Total Payout Transactions

₹ {{ number_format($total_payout_amount ?? 0, 2) }}

Total Payout Charges

₹ {{ number_format($total_payout_charge ?? 0, 2) }}

Total Payin Balance

₹ {{ number_format($total_payin_balance ?? 0, 2) }}

Performance Snapshot
@if ($range === 'all') Showing data for: All Time @else Showing data for: {{ $start?->format('d M Y') }} - {{ $end?->format('d M Y') }} @endif
@foreach ($panels as $panel)
{{ $panel['label'] }}

₹ {{ number_format($panel['value'] ?? 0, 2) }}

{{ $panel['count'] ?? 0 }} Txn
@endforeach
Transaction Analytics
Visual comparison of current dashboard metrics
Balance Summary
Operational balances at a glance
Payout Balance
Current wallet reserve
₹ {{ number_format($total_payout_balance ?? 0, 2) }}
Payin Balance
Current collection reserve
₹ {{ number_format($total_payin_balance ?? 0, 2) }}
Payout Charges
Accumulated processing charges
₹ {{ number_format($total_payout_charge ?? 0, 2) }}
Active Users
Enabled merchant accounts
{{ $active_users ?? 0 }}
Wallet Transactions
Recent credits and debits across services
View all
@forelse ($wallet_logs as $log)
{{ $log->service_name ?? 'N/A' }}
{{ \Carbon\Carbon::parse($log->created_at)->format('d M Y, h:i A') }}
{{ $log->credit ? '₹' . number_format($log->credit, 2) : '—' }}
{{ $log->debit ? '₹' . number_format($log->debit, 2) : '—' }}
@empty
No wallet transactions available.
@endforelse
Service Charges
Category-wise charge summary
@forelse($services_charge as $summary) @empty @endforelse
Service Total Spent
{{ $summary->service_name }} ₹ {{ number_format($summary->total_spent, 2) }}
No service charges found.
Fund Requests
Latest incoming request records
@if ($fund_requests->isEmpty())
No fund requests found.
@else
@foreach ($fund_requests as $request) @endforeach
Sender Company Account Date Amount Status
{{ $request->sender_account_number ?? 'N/A' }} {{ $request->companyAccount['account_number'] ?? 'N/A' }} {{ \Carbon\Carbon::parse($request->created_at)->format('d M Y') }} ₹ {{ number_format($request->amount, 2) }} Success
@endif
Recent User Activity
Latest operational actions and movement
@forelse ($recent_activities as $activity)
{{ $activity }}
@empty
No recent activities available.
@endforelse
System Logs
Latest internal system messages
@forelse ($system_logs as $log)
{{ $log }}
@empty
No system logs available.
@endforelse
@endsection