{{ __($setTitle) }}

{{ __('Payment Details') }}
@php echo $gateway->details ?? '' @endphp
@if($gateway->type == \App\Enums\Payment\GatewayType::AUTOMATIC->value && $gateway->code == \App\Enums\Payment\GatewayCode::BLOCK_CHAIN->value)

@lang('PLEASE SEND EXACTLY') {{ $payment->btc_amount }} @lang('BTC')

@lang('TO') {{ $payment->btc_wallet ?? '' }}
@lang('Image')

@lang('SCAN TO SEND')

@endif @if($gateway->type == \App\Enums\Payment\GatewayType::MANUAL->value)
  • {{ __('Rate') }} {{ getCurrencySymbol() }}1 = {{shortAmount($payment->rate)}} {{ $gateway->currency ?? getCurrencyName() }}
  • {{ __('Deposit Amount') }} {{ getCurrencySymbol() }}{{shortAmount($payment->amount)}}
  • {{ __('Charge') }} {{ getCurrencySymbol() }}{{shortAmount($payment->charge)}}
  • {{ __('Final Amount') }} {{ getCurrencySymbol() }}{{shortAmount($payment->final_amount)}}
@csrf @method('PUT')
@foreach($gateway->parameter as $key => $parameter) @php $parameter = is_array($parameter) ? $parameter : []; @endphp
@if(getArrayValue($parameter,'field_type') == 'file') @elseif(getArrayValue($parameter,'field_type') == 'text') @elseif(getArrayValue($parameter,'field_type') == 'textarea') @endif
@endforeach
@endif