| Case # |
Lost Amount |
Recovered |
Recovery % |
Status |
Actions |
@foreach($user->recoveryCases as $case)
@php
$percentage = $case->lost_amount > 0
? ($case->recovered_amount / $case->lost_amount) * 100
: 0;
@endphp
| {{ $case->case_number }} |
${{ number_format($case->lost_amount,2) }}
|
${{ number_format($case->recovered_amount ?? 0,2) }}
|
{{ number_format($percentage,1) }}%
|
{{ ucfirst($case->status) }}
|
@if($case->status == 'pending')
@endif
|
@endforeach
| Case # |
Amount |
Proof |
Status |
Actions |
@foreach($user->recoveryCases as $case)
@foreach($case->settlements as $s)
| {{ $case->case_number }} |
${{ number_format($s->amount, 2) }} |
@if($s->proof)
View Proof
@else
No proof uploaded
@endif
|
{{ ucfirst($s->status) }}
|
@if($s->status == 'pending')
@endif
|
@endforeach
@endforeach
| Ref |
Amount |
Status |
Actions |
@foreach($user->withdrawals as $w)
| {{ $w->reference }} |
${{ number_format($w->amount, 2) }} |
{{ ucfirst($w->status) }}
|
@if($w->status == 'pending')
@endif
|
@endforeach
{{ strtoupper($user->kyc_status) }}
@if($user->kyc_status !== 'approved')
@else
This user has been successfully verified.
@endif