Amount
@if ($withdrawal->transaction_fee_held)
Transaction Fee Deducted: {{ number_format($withdrawal->transaction_fee_held, 2) }}
@endif
@if ($withdrawal->bonus_credits_held)
MT2 Tokens Deducted: {{ number_format($withdrawal->bonus_credits_held, 2) }}
@endif
Total: {{ number_format($withdrawal->amount - $withdrawal->transaction_fee_held, 2) }}
Type
{{ $withdrawal->type_text }}
Note
{{ $withdrawal->notes }}
Transfer To
{{ $withdrawal->transfer_to }}
Status
{{ $withdrawal->status_text }}
@if ($withdrawal->status != App\Models\Withdrawal::STATUS_PENDING && !empty($withdrawal->proof_of_transaction))
Proof Of Transaction
Open
@endif
@if ($withdrawal->status == App\Models\Withdrawal::STATUS_PENDING)
@endif