@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
{!! $kycMessages[$status]['msg'] !!}
@if ($status == 'D' || $status == 'B') Verify Now @endifYou’re all set to manage payments, wallet activity, service usage and fund requests from one clean user dashboard.
The Reserve Bank of India has granted in-principle approval to 4 new companies under its Payment Aggregator framework, boosting fintech competitiveness.
| {{ $summary->service_name }} | ₹{{ number_format($summary->total_spent, 2) }} |
| No service charges found. | |
No fund requests found.
@else| 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 |