Withdrawal Details
| Amount: |
Rp {{ number_format($withdrawal->amount, 2) }} |
| Status: |
{{ ucfirst($withdrawal->status) }}
|
| Payment Method: |
{{ $withdrawal->payment_method }} |
| Created At: |
{{ $withdrawal->created_at->format('Y-m-d H:i:s') }} |
@if($withdrawal->processed_at)
| Processed At: |
{{ $withdrawal->processed_at->format('Y-m-d H:i:s') }} |
@endif
@if($withdrawal->processor)
| Processed By: |
{{ $withdrawal->processor->name }} |
@endif
Payment Details
{{ json_encode($withdrawal->payment_details, JSON_PRETTY_PRINT) }}
@if($withdrawal->admin_notes)
Admin Notes
{{ $withdrawal->admin_notes }}
@endif
@if($withdrawal->status == 'pending')
@elseif($withdrawal->status == 'approved')
@endif