@extends('layouts/layout') @section('content')

Withdrawal Details (ID: {{ $withdrawal->id }})

{{ $withdrawal->user->name }}
{{ $withdrawal->user->email }}
Total Deposited

{{ $withdrawal->user->total_deposited }}

Total Withdrawal

{{ $withdrawal->user->total_withdrawal }}

Total Spent

{{ $withdrawal->user->total_spent }}

Winnings

{{ $withdrawal->user->total_winnings }}

Total Free Credits Remaining

{{ $withdrawal->user->free_credits_remaining }}

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
@csrf @method('PUT')
@csrf @method('PUT')
@endsection