@extends('user.layouts.master') @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' => the_tnx(data_get($order, 'tnx')), 'amount' => ''.money($amount, $currency).'']) !!}

{{ __("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") }} {{ (data_get($order, 'tnx_fees')) ? '*' : '' }}
    {{ money($amount, $currency) }}
  • {{ __("Reference") }}
    {{ the_tnx(data_get($order, 'tnx')) }}
@if (data_get($order, 'tnx_fees'))

* {{ __('A processing fee of :amount included in total payment amount.', ['amount' => money(data_get($order, 'tnx_fees'), $currency)]) }}

@endif @if(data_get($bank, 'account_name') || data_get($bank, 'account_number'))
{{ __("Account Information:") }}
    @if(data_get($bank, 'account_name'))
  • {{ __("Account Name") }}
    {{ data_get($bank, 'account_name') }}
  • @endif @if(data_get($bank, 'account_number'))
  • {{ __("Account Number") }}
    {{ data_get($bank, 'account_number') }}
  • @endif @if(data_get($bank, 'account_address'))
  • {{ __("Account Holder Address") }}
    {{ data_get($bank, 'account_address') }}
  • @endif
@endif @if(data_get($bank, 'bank_name'))
{{ __("Our Bank Details:") }}
  • {{ __("Bank Name") }}
    {{ data_get($bank, 'bank_name') }}
  • @if(data_get($bank, 'bank_branch'))
  • {{ __("Bank Branch") }}
    {{ data_get($bank, 'bank_branch') }}
  • @endif @if(data_get($bank, 'bank_address'))
  • {{ __("Bank Address") }}
    {{ data_get($bank, 'bank_address') }}
  • @endif @if(data_get($bank, 'sortcode'))
  • {{ __("Sort Code") }}
    {{ data_get($bank, 'sortcode') }}
  • @endif @if(data_get($bank, 'routing'))
  • {{ __("Routing Number") }}
    {{ data_get($bank, 'routing') }}
  • @endif @if(data_get($bank, 'iban'))
  • {{ __("IBAN") }}
    {{ data_get($bank, 'iban') }}
  • @endif @if(data_get($bank, 'swift'))
  • {{ __("Swift/BIC") }}
    {{ data_get($bank, 'swift') }}
  • @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