@extends('layouts.admin') @section('title', 'Wallet Requests') @section('content')
| # | User | Amount | Mode | UTR / Ref | Note | Status | Date | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $wr->id }} |
{{ $wr->user->name }}
{{ $wr->user->mobile ?? $wr->user->email }}
{{ $wr->user->role_label }}
|
₹{{ number_format($wr->amount, 2) }} | {{ $wr->payment_mode }} |
@if($wr->utr_number)
{{ $wr->utr_number }}
@else
—
@endif
|
{{ $wr->note ?? '—' }} |
@if($wr->status === 'pending')
Pending
@elseif($wr->status === 'approved')
Approved
{{ $wr->approved_at?->format('d M, h:i A') }}
@else
Rejected
@if($wr->reject_reason)
{{ $wr->reject_reason }}
@endif
@endif
|
{{ $wr->created_at->format('d M Y') }} {{ $wr->created_at->format('h:i A') }} |
@if($wr->status === 'pending') @else Done @endif |
| Koi request nahi hai. | ||||||||