@extends('admin.layouts.app') @section('panel')
@lang('Deposit Via') @if ($deposit->method_code < 5000) {{ __(@$deposit->gateway->name) }} @else @lang('Google Pay') @endif
  • @lang('Date') {{ showDateTime($deposit->created_at) }}
  • @lang('Transaction Number') {{ $deposit->trx }}
  • @lang('Username') @{{ @$deposit->user->username }}
  • @lang('Method') @if ($deposit->method_code < 5000) {{ __(@$deposit->gateway->name) }} @else @lang('Google Pay') @endif
  • @lang('Amount') {{ showAmount($deposit->amount) }}
  • @lang('Charge') {{ showAmount($deposit->charge) }}
  • @lang('After Charge') {{ showAmount($deposit->amount + $deposit->charge) }}
  • @lang('Rate') 1 {{ __(gs('cur_text')) }} = {{ showAmount($deposit->rate, currencyFormat: false) }} {{ __($deposit->baseCurrency()) }}
  • @lang('After Rate Conversion') {{ showAmount($deposit->final_amount, currencyFormat: false) }} {{ __($deposit->method_currency) }}
  • @lang('Status') @php echo $deposit->statusBadge @endphp
  • @if ($deposit->admin_feedback)
  • @lang('Admin Response')

    {{ __($deposit->admin_feedback) }}

  • @endif
@if ($details || $deposit->status == Status::PAYMENT_PENDING)
@lang('User Deposit Information')
@if ($details != null) @foreach (json_decode($details) as $val) @if ($deposit->method_code >= 1000)
{{ __($val->name) }}
@if ($val->type == 'checkbox') {{ implode(',', $val->value) }} @elseif($val->type == 'file') @if ($val->value) @lang('Attachment') @else @lang('No File') @endif @else

{{ __($val->value) }}

@endif
@endif @endforeach @if ($deposit->method_code < 1000) @include('admin.deposit.gateway_data', [ 'details' => json_decode($details), ]) @endif @endif @if ($deposit->status == Status::PAYMENT_PENDING)
@endif
@endif
{{-- REJECT MODAL --}} @endsection @push('style') @endpush