@extends($activeTemplate . 'layouts.master') @section('content')
@lang('Withdrawal Info')
@php echo $withdraw->statusBadge @endphp
  • @lang('TRX No.') #{{ $withdraw->trx }}
  • @lang('Amount') {{ showAmount($withdraw->amount) }}
  • @lang('Charge') {{ showAmount($withdraw->charge) }}
  • @lang('After Charge') {{ showAmount($withdraw->after_charge) }}
  • @lang('Conversion Rate') 1 {{ __(gs()->cur_text) }} = {{ showAmount($withdraw->rate, currencyFormat: false) }} {{ __($withdraw->currency) }}
  • @lang('After Convert') {{ showAmount($withdraw->final_amount, currencyFormat: false) }} {{ __($withdraw->currency) }}
  • @lang('Created At') {{ showDateTime($withdraw->created_at) }}
  • @if ($withdraw->branch) @lang('Branch') {{ __(@$withdraw->branch->name) }} @else @lang('Withdraw Method') {{ __(@$withdraw->method->name) }} @endif
@if ($withdraw->status == Status::PAYMENT_REJECT)
@lang('Reason for Rejection')
{{ $withdraw->admin_feedback }}
@endif @php $details = $withdraw->withdraw_information ? $withdraw->withdraw_information : null; @endphp @if ($details)
@lang('Submitted Data')
    @foreach ($details as $detail)
  • {{ $detail->name }} @if ($detail->type == 'checkbox') {{ implode(',', $detail->value) }} @elseif($detail->type == 'file') @if ($detail->value) @lang('Attachment') @else @lang('No File') @endif @else

    {{ $detail->value }}

    @endif
  • @endforeach
@endif
@endsection