@extends('template.coin.layouts.base') @section('title', __($depositDetails['tranx']->txn_id.' | Complete Deposit')) @section('content')

{{ __("Transfer your Money") }}

{!! __("Your order #:orderid has been placed successfully. To complete your deposit, please send the payment of :amount through bank.", ['orderid' => $depositDetails['tranx']->txn_id, 'amount' => ''.__format_money($depositDetails['amount'], 'fiat').' '.$user->user_curr().'']) !!}

{{ __("We've sent an email to you including payment information as below. If you have any question regarding payment information, please contact us.") }}

{{ __("Payment Information:") }}
  • {{ __("Payment Amount") }} {{ ($depositDetails['tranx']->txn_fees) ? '*' : '' }}
    {{ __format_money($depositDetails['amount'], 'fiat') }} {{$user->user_curr()}}
  • {{ __("Reference") }}
    {{ $depositDetails['tranx']->txn_id }}
@if ($depositDetails['tranx']->txn_fees)

* {{ __('A processing fee of :amount included in total payment amount.', ['amount' => __format_money($depositDetails['tranx']->txn_fees)]) }}

@endif @if($depositDetails['method']->show_support == 'yes')
{{ __("Account Information:") }}

Please contact support for details

@else @if(data_get($depositDetails['bank'], 'account_name') || data_get($depositDetails['bank'], 'account_number'))
{{ __("Account Information:") }}
    @if(data_get($depositDetails['bank'], 'account_name'))
  • {{ __("Account Name") }}
    {{ data_get($depositDetails['bank'], 'account_name') }}
  • @endif @if(data_get($depositDetails['bank'], 'account_number'))
  • {{ __("Account Number") }}
    {{ data_get($depositDetails['bank'], 'account_number') }}
  • @endif @if(data_get($depositDetails['bank'], 'account_address'))
  • {{ __("Account Holder Address") }}
    {{ data_get($depositDetails['bank'], 'account_address') }}
  • @endif
@endif @if(data_get($depositDetails['bank'], 'bank_name'))
{{ __("Our Bank Details:") }}
  • {{ __("Bank Name") }}
    {{ data_get($depositDetails['bank'], 'bank_name') }}
  • @if(data_get($depositDetails['bank'], 'bank_branch'))
  • {{ __("Bank Branch") }}
    {{ data_get($depositDetails['bank'], 'bank_branch') }}
  • @endif @if(data_get($depositDetails['bank'], 'bank_address'))
  • {{ __("Bank Address") }}
    {{ data_get($depositDetails['bank'], 'bank_address') }}
  • @endif @if(data_get($depositDetails['bank'], 'sortcode'))
  • {{ __("Sort Code") }}
    {{ data_get($depositDetails['bank'], 'sortcode') }}
  • @endif @if(data_get($depositDetails['bank'], 'routing'))
  • {{ __("Routing Number") }}
    {{ data_get($depositDetails['bank'], 'routing') }}
  • @endif @if(data_get($depositDetails['bank'], 'iban'))
  • {{ __("IBAN") }}
    {{ data_get($depositDetails['bank'], 'iban') }}
  • @endif @if(data_get($depositDetails['bank'], 'swift'))
  • {{ __("Swift/BIC") }}
    {{ data_get($depositDetails['bank'], 'swift') }}
  • @endif
@endif @endif
  • {{ __("Your account will credited once we confirm that payment has been received.") }}

  • {{ __("Ensure that the amount you send is sufficient to cover all such changes by your bank.") }}

  • {{ __("Please make your payment within 3 days, unless this order will be cancelled.") }}

@endsection