@extends('frontend.layouts.app') @section('content')

{{ translate('1. My Cart') }}

{{ translate('2. Shipping info') }}

{{ translate('3. Delivery info') }}

{{ translate('4. Payment') }}

{{ translate('5. Confirmation') }}

@csrf

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

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

@if (get_setting('paypal_payment') == 1)
@endif @if (get_setting('stripe_payment') == 1)
@endif @if (get_setting('mercadopago_payment') == 1)
@endif @if (get_setting('sslcommerz_payment') == 1)
@endif @if (get_setting('instamojo_payment') == 1)
@endif @if (get_setting('razorpay') == 1)
@endif @if (get_setting('paystack') == 1)
@endif @if (get_setting('voguepay') == 1)
@endif @if (get_setting('payhere') == 1)
@endif @if (get_setting('ngenius') == 1)
@endif @if (get_setting('iyzico') == 1)
@endif @if (get_setting('nagad') == 1)
@endif @if (get_setting('bkash') == 1)
@endif @if (get_setting('aamarpay') == 1)
@endif @if (get_setting('authorizenet') == 1)
@endif @if (get_setting('payku') == 1)
@endif @if (addon_is_activated('african_pg')) @if (get_setting('mpesa') == 1)
@endif @if (get_setting('flutterwave') == 1)
@endif @if (get_setting('payfast') == 1)
@endif @endif @if (addon_is_activated('paytm') && get_setting('paytm_payment') == 1)
@endif @if (addon_is_activated('paytm') && get_setting('toyyibpay_payment') == 1)
@endif @if (get_setting('cash_payment') == 1) @php $digital = 0; $cod_on = 1; foreach ($carts as $cartItem) { $product = \App\Models\Product::find($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 (\App\Models\ManualPaymentMethod::all() as $method)
@endforeach @foreach (\App\Models\ManualPaymentMethod::all() 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'))
@endif @if (Auth::check() && get_setting('wallet_system') == 1)
{{ translate('Or') }}
{{ translate('Your wallet balance :') }} {{ single_price(Auth::user()->balance) }}
@if (Auth::user()->balance < $total) @else @endif
@endif
@include('frontend.partials.cart_summary')
@endsection @section('script') @endsection