@extends('layouts.admin') @section('title', 'User Recovery - Stuck Payments') @push('styles') @endpush @section('content')

User Recovery

Users with successful payments but incomplete UID generation

Back to Dashboard
{{-- Alert Messages --}} @if(session('success')) @endif @if(session('error')) @endif @if(session('warning')) @endif {{-- Statistics Cards --}}
{{ $users->total() }}

Stuck Users

Loading...

Pending Amount

Loading...

Oldest Pending

{{-- Filters --}}
@if(request()->anyFilled(['search', 'from_date', 'to_date'])) @endif
{{-- Users Table --}}
Pending UID Generation ({{ $users->total() }})
@if($users->isEmpty())
No Stuck Users

All payments have been successfully processed!

@else
@foreach($users as $user) @endforeach
User Details Payment Info Payment Date Amount Status Action
{{ $user->name }}
{{ $user->email }}
Mobile: {{ $user->mobile }}
{{ $user->payment_id }}
DB ID: {{ $user->payment_db_id }}
{{ \Carbon\Carbon::parse($user->payment_date)->format('d M Y, h:i A') }}
{{ \Carbon\Carbon::parse($user->payment_date)->diffForHumans() }}
₹{{ number_format($user->amount / 100, 2) }} @if(empty($user->reg_uid)) No UID @else Has UID, Not Paid
{{ $user->reg_uid }}
@endif
@endif
{{-- Generate UID Confirmation Modal --}} @endsection @push('scripts') @endpush