@extends('admin.layouts.app') @section('panel')
@lang('Payment Via') {{ __(@$deposit->gateway->name) }}
  • @lang('Date') {{ showDateTime($deposit->created_at) }}
  • @lang('Transaction Number') {{ $deposit->trx }}
  • @lang('Username') {{ @$deposit->user->username }}
  • @lang('Method') {{ __(@$deposit->gateway->name) }}
  • @lang('Amount') {{ showAmount($deposit->amount) }}
  • @lang('Charge') {{ showAmount($deposit->charge) }}
  • @lang('After Charge') {{ showAmount($deposit->amount + $deposit->charge) }}
  • @lang('Rate') 1 = {{ showAmount($deposit->rate) }} {{ __($deposit->baseCurrency()) }}
  • @lang('Payable') {{ 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)
@if ($deposit->order_id) @lang('User Payment Information') @else @lang('User Deposit Information') @endif
@if ($details != null) @php $details = json_decode($details); @endphp @foreach (is_string($details) ? json_decode($details) : $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