| {{ _lang('User Name') }} | {{ $withdrawRequest->user->name }} |
| {{ _lang('User Email') }} | {{ $withdrawRequest->user->email }} |
| {{ _lang('Withdraw Method') }} | {{ $withdrawRequest->method->name }} |
| {{ _lang('Amount') }} | {{ decimalPlace($withdrawRequest->amount, currency($withdrawRequest->method->currency->name)) }} |
| {{ _lang('Description') }} | {{ $withdrawRequest->description }} |
@if($withdrawRequest->requirements)
@foreach($withdrawRequest->requirements as $key => $value)
| {{ ucwords(str_replace('_',' ',$key)) }} |
{{ $value }} |
@endforeach
@endif
| {{ _lang('Attachment') }} |
{!! $withdrawRequest->attachment == "" ? '' : ''._lang('View Attachment').'' !!}
|
| {{ _lang('Status') }} | {!! xss_clean(transaction_status($withdrawRequest->status)) !!} |