@extends('admin.layouts.main') @section('panel')

{{ $setTitle }}

  • {{ __('Initiated At') }} {{ showDateTime($deposit->created_at) }}
  • {{ __('Gateway') }} {{ $deposit->gateway->name ?? 'N/A' }}
  • {{ __('Rate') }} {{ getCurrencySymbol() }}1 = {{shortAmount($deposit->rate)}} {{ $deposit->gateway->currency ?? getCurrencyName() }}
  • {{ __('Trx') }} {{$deposit->trx}}
  • {{ __('Deposit Amount') }} {{ getCurrencySymbol() }}{{shortAmount($deposit->amount)}}
  • {{ __('Charge') }} {{ getCurrencySymbol() }}{{shortAmount($deposit->charge)}}
  • {{ __('Final Amount') }} {{ getCurrencySymbol() }}{{shortAmount($deposit->final_amount)}}
  • {{ __('Status') }} {{ \App\Enums\Payment\Deposit\Status::getName($deposit->status) }}
@if ($deposit->gateway->parameter && $deposit->meta)
{{ __('Payment Information') }}
    @foreach ($deposit->gateway->parameter as $parameter) @if(\Illuminate\Support\Arr::get($parameter, 'field_type', 'text') == 'file')
  • {{ \Illuminate\Support\Arr::get($parameter, 'field_label','') }}
  • @else
  • {{ \Illuminate\Support\Arr::get($parameter, 'field_label','') }} {{ \Illuminate\Support\Arr::get($deposit->meta, \Illuminate\Support\Arr::get($parameter, 'field_name','')) ?? 'N/A' }}
  • @endif @endforeach
@endif @if($deposit->status == \App\Enums\Payment\Deposit\Status::PENDING->value)
{{ __('Check the deposit details and update its status.') }}
@endif
@if($deposit->status == \App\Enums\Payment\Deposit\Status::PENDING->value) @endif @endsection