Process respondent cashouts, deduct platform fees, and extract your profit.
| User & Reference | MoMo Details | Fee Breakdown | Status & Time | Actions |
|---|---|---|---|---|
|
{{ $payout->user->name ?? 'Unknown User' }}
Ref: {{ $payout->reference_code ?? 'TX-'.$payout->id }}
|
@php
$net = strtolower($payout->network ?? 'mtn');
$badgeClass = match($net) {
'mtn' => 'bg-amber-500/10 text-amber-400 border-amber-500/20',
'telecel' => 'bg-red-500/10 text-red-400 border-red-500/20',
'at' => 'bg-blue-500/10 text-blue-400 border-blue-500/20',
default => 'bg-slate-500/10 text-slate-400 border-slate-500/20'
};
@endphp
{{ $payout->network ?? 'MoMo' }}
{{ $payout->momo_number }}
Name: {{ $payout->momo_account_name }}
|
@php
$feeRate = \App\Models\Setting::get('cashout_fee', 5);
$adminCut = ($payout->amount * $feeRate) / 100;
$userGets = $payout->amount - $adminCut;
@endphp
Requested:
GH₵ {{ number_format($payout->amount, 2) }}
Platform Cut ({{ $feeRate }}%):
+GH₵ {{ number_format($adminCut, 2) }}
Send to User:
GH₵ {{ number_format($userGets, 2) }}
|
@if($payout->status === 'completed')
Paid
@elseif($payout->status === 'rejected')
Rejected
@else
Pending Review
@endif
{{ $payout->created_at ? $payout->created_at->format('M d • h:i A') : 'N/A' }}
|
@if($payout->status === 'pending')
@else
Actioned
@endif
|
|
Queue is Empty No Mobile Money payout requests currently pending. |
||||