{{ translate('Any additional info?') }}

{{ translate('Select a payment option') }}

@foreach (get_activate_payment_methods() as $payment_method)
@endforeach @if (get_setting('cash_payment') == 1) @php $digital = 0; $cod_on = 1; foreach ($carts as $cartItem) { $product = get_single_product($cartItem['product_id']); if ($product['digital'] == 1) { $digital = 1; } if ($product['cash_on_delivery'] == 0) { $cod_on = 0; } } @endphp @if ($digital != 1 && $cod_on == 1)
@endif @endif @if (Auth::check()) @if (addon_is_activated('offline_payment')) @foreach (get_all_manual_payment_methods() as $method)
@endforeach @foreach (get_all_manual_payment_methods() as $method)
@php echo $method->description @endphp @if ($method->bank_info != null)
    @foreach (json_decode($method->bank_info) as $key => $info)
  • {{ translate('Bank Name') }} - {{ $info->bank_name }}, {{ translate('Account Name') }} - {{ $info->account_name }}, {{ translate('Account Number') }} - {{ $info->account_number }}, {{ translate('Routing Number') }} - {{ $info->routing_number }}
  • @endforeach
@endif
@endforeach @endif @endif
@if (addon_is_activated('offline_payment') && count(get_all_manual_payment_methods())>0)

{{ translate('Browse') }}
{{ translate('Choose image') }}
@endif @if (Auth::check() && get_setting('wallet_system') == 1)
{{ translate('Or, Your wallet balance :') }} {{ single_price(Auth::user()->balance) }}
@if (Auth::user()->balance < $total) @else @endif
@endif