@extends('layouts.admin', ['heading' => 'Withdrawals', 'subheading' => 'Queue control, payout retry, and settlement summary']) @section('content')
| Request | Member | Amount | Deductions | Status | Payout | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ $withdrawal->request_number }}
{{ optional($withdrawal->requested_at)->format('Y-m-d H:i') }}
|
{{ $withdrawal->user?->member_code ?? 'N/A' }}
{{ $withdrawal->user?->name ?? '' }}
|
Gross: ₹ {{ number_format((float) $withdrawal->amount, 2) }}
Net: ₹ {{ number_format((float) $withdrawal->net_amount, 2) }}
|
TDS: ₹ {{ number_format((float) $withdrawal->tds_amount, 2) }}
Charge: ₹ {{ number_format((float) $withdrawal->charge_amount, 2) }}
Locked: ₹ {{ number_format((float) $withdrawal->locked_amount, 2) }}
|
{{ strtoupper($withdrawal->status) }} |
Status: {{ $withdrawal->latestPayout?->status ?? '-' }}
Attempts: {{ $withdrawal->latestPayout?->attempts ?? 0 }}
@if($withdrawal->latestPayout?->failure_reason)
{{ $withdrawal->latestPayout->failure_reason }}
@endif
|
|
|
| No withdrawals found. | |||||||