Name: {{ $user->name }}
Email: {{ $user->email }}
Phone: {{ $user->phone }}
Whatsapp: {{ $user->whatsapp }}
Address: {{ $user->address }}
Wallet Balance: ₹{{ number_format($user->wallet_balance, 2) }}
Gender: {{ $user->gender ?? 'N/A' }}
Date of Birth: {{ $user->dob ?? 'N/A' }}
KYC Status: {{ ucfirst($user->kyc_status) }}
Status: {{ $user->status == '1' ? 'Active' : 'Inactive' }}
Blocked: {{ $user->is_blocked == '0' ? 'No' : 'Yes' }}
Member Since: {{ $user->created_at->format('d M Y') }}
{{ $bankDetail->account_holder_name }}
{{ $bankDetail->account_number }}
{{ $bankDetail->ifsc_code }}
{{ $bankDetail->account_type }}
{{ $bankDetail->upi_id }}
{{ $bankDetail->paypal_email }}
This user hasn't added any bank details yet.
| Transaction ID | Amount | Type | Transaction Type | Status | Payment Status | Date | Details |
|---|---|---|---|---|---|---|---|
{{ $history->transaction_id }} |
{{ $history->type == 'credit' ? '+' : '-' }} ₹{{ number_format($history->amount, 2) }} | {{ ucfirst($history->type) }} | {{ ucfirst($history->transaction_type) }} | {{ ucfirst($history->status) }} | @if($history->payment_status) {{ ucfirst($history->payment_status) }} @else - @endif | {{ $history->created_at->format('d M Y, h:i A') }} |