@extends('admin.layouts.app') @section('panel')
@lang('Withdraw from - ') {{ strtoupper($withdrawal->userCoinBalance->miner->coin_code) }} @lang('Wallet')
  • @lang('Date') {{ showDateTime($withdrawal->created_at) }}
  • @lang('Trx Number') {{ $withdrawal->trx }}
  • @lang('Username') {{ @$withdrawal->user->username }}
  • @lang('Payable Amount') {{ showAmount($withdrawal->amount, 8, exceptZeros: true, currencyFormat: false) }} {{ __(strtoupper($withdrawal->userCoinBalance->miner->coin_code)) }}
  • @lang('Status') @php echo $withdrawal->statusBadge @endphp
  • @if ($withdrawal->admin_feedback)
  • @lang('Admin Response')

    {{ $withdrawal->admin_feedback }}

  • @endif
@lang('User Withdraw Information')
@lang('Wallet Address'):

{{ __($withdrawal->userCoinBalance->wallet) }}

@if ($withdrawal->status == Status::PAYMENT_PENDING)
@endif
{{-- APPROVE MODAL --}} {{-- REJECT MODAL --}} @endsection