@extends('layouts/contentNavbarLayout') @section('title', 'Dashboard - Analytics') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content') @php $kycMessages = [ 'B' => [ 'msg' => '❌ Your KYC has been blocked or rejected. Please contact support for assistance.', 'class' => 'bg-label-danger', ], 'C' => [ 'msg' => '⏳ Your KYC verification is in process. It usually takes 24 to 48 hours.', 'class' => 'bg-label-info', ], 'D' => [ 'msg' => '📩 You haven’t submitted your KYC request yet. Verify now to get started!', 'class' => 'bg-label-primary', ], ]; $status = Auth::guard('web')->user()->kycstatus ?? null; @endphp
@if ($status && isset($kycMessages[$status]))

{!! $kycMessages[$status]['msg'] !!}

@if ($status == 'D' || $status == 'B') Verify Now @endif
@endif
Secure Account

Welcome back, {{ $username }} 👋

You’re all set to manage payments, wallet activity, service usage and fund requests from one clean user dashboard.

{{ date('F d, Y') }} Wallet Overview Payments Active
Total Transactions Snapshot

₹ {{ number_format(collect($panels)->sum('value') ?? 0, 2) }}

Wallet Services Used

{{ count($wallet_logs ?? []) }}

Fund Requests

{{ $fund_requests->count() ?? 0 }}

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
Recent News
Market and compliance updates
RBI Approves 4 New Payment Aggregators

The Reserve Bank of India has granted in-principle approval to 4 new companies under its Payment Aggregator framework, boosting fintech competitiveness.

@foreach ($panels as $panel)
{{ $panel['label'] }}

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

{{ $panel['count'] ?? 0 }} Txn
@endforeach
Fintech Products
Upcoming services and product directions
Digital Payments
Neobanking
e-Wallets
Investment Apps
Fraud Detection
Mobile Banking
Bill Payments
Credit Scoring
Wallet Transactions
Recent credits and debits
View all
@forelse ($wallet_logs as $log)
{{ $log->service_name ?? 'N/A' }}
{{ \Carbon\Carbon::parse($log->created_at)->format('M d, Y') }}
{{ $log->credit != 0.0 ? '₹' . number_format($log->credit, 2) : '—' }}
{{ $log->debit != 0.0 ? '₹' . number_format($log->debit, 2) : '—' }}
@empty
No wallet transactions found.
@endforelse
Service Charges
Category-wise spending summary
@forelse($services_charge as $index => $summary) @empty @endforelse
{{ $summary->service_name }} ₹{{ number_format($summary->total_spent, 2) }}
No service charges found.
Fund Requests
Manage your submitted fund requests
@if ($fund_requests->isEmpty())

No fund requests found.

@else
@foreach ($fund_requests as $request) @endforeach
Sender Account Date Amount Status
{{ $request->sender_account_number }} {{ \Carbon\Carbon::parse($request->created_at)->format('M d, Y') }} ₹{{ number_format($request->amount, 2) }} Success
@endif
@endsection @section('js') @endsection