@extends($activeTemplate . 'layouts.master') @section('content')
@lang('Deposit Info')
@php echo $deposit->statusBadge @endphp
  • @lang('TRX No.') #{{ $deposit->trx }}
  • @lang('Amount') {{ showAmount($deposit->amount) }}
  • @lang('Charge') {{ showAmount($deposit->charge) }}
  • @lang('After Charge') {{ showAmount($deposit->amount + $deposit->charge) }}
  • @lang('Conversion Rate') 1 {{ __(gs()->cur_text) }} = {{ showAmount($deposit->rate, currencyFormat: false) }} {{ __($deposit->method_currency) }}
  • @lang('After Convert') {{ showAmount($deposit->final_amount, currencyFormat: false) }} {{ __($deposit->method_currency) }}
  • @lang('Created At') {{ showDateTime($deposit->created_at) }}
  • @if ($deposit->branch) @lang('Branch') {{ __(@$deposit->branch->name) }} @else @lang('Gateway') {{ __(@$deposit->gateway->name) }} @endif
@if ($deposit->status == Status::PAYMENT_REJECT)
@lang('Reason for Rejection')
{{ $deposit->admin_feedback }}
@endif @if ($deposit->method_code >= 1000)
@lang('Submitted Data')
@php $details = $deposit->detail != null ? $deposit->detail : null; @endphp
    @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