@if(isset($cart->bundle->is_subscription_enabled) && $cart->bundle->is_subscription_enabled == '1')
@if($gsetting->stripe_enable == 1)
@endif
@else
@if($gsetting->stripe_enable == 1)
@endif
@if($gsetting->paypal_enable == 1)
@endif
@if($gsetting->instamojo_enable == 1)
@endif
@if($gsetting->enable_omise == 1 && $currency->code == 'THB')
@endif
@if($gsetting->razorpay_enable == 1)
@endif
@if($gsetting->paystack_enable == 1)
@endif
@if($gsetting->paytm_enable == 1)
@endif
@php
$banktransfer = App\BankTransfer::first();
@endphp
@if(isset($banktransfer))
@if($banktransfer->bank_enable == '1')
@php
$bankdetail = App\BankTransfer::first();
@endphp
- {{ __('Account holder name') }}: {{ $bankdetail['account_holder_name'] }}
- {{ __('Bank Name') }}: {{ $bankdetail['bank_name'] }}
- {{ __('Bank Acccoun tNumber') }}: {{ $bankdetail['account_number'] }}
@if(isset($bankdetail['ifcs_code']))
- {{ __('IFCS Code') }}: {{ $bankdetail['ifcs_code'] }}
@endif
@if(isset($bankdetail['swift_code']))
- {{ __('Swift Code') }}: {{ $bankdetail['swift_code'] }}
@endif
@endif
@endif
@if($gsetting->enable_payu == 1)
@endif
@if($gsetting->enable_cashfree == 1)
@endif
@if($gsetting->enable_moli == 1)
@endif
@if($gsetting->enable_skrill == 1)
@endif
@if($gsetting->enable_rave == 1)
@php
$array = array(array('metaname' => 'color', 'metavalue' => 'blue'),
array('metaname' => 'size', 'metavalue' => 'small'));
// print_r($secureamount);
@endphp
@endif
@php
$order_id = uniqid();
@endphp
@if($gsetting->enable_payhere == 1)
@if(env('PAYHERE_MODE') == 'sandbox')
@php
$action = 'https://sandbox.payhere.lk/pay/checkout';
@endphp
@else
@php
$action = 'https://www.payhere.lk/pay/checkout';
@endphp
@endif
@endif
@php
$conversation_id = uniqid();
@endphp
@if($gsetting->iyzico_enable == 1)
@endif
@if($gsetting->ssl_enable == 1)
@endif
@php
$manualpay = App\ManualPayment::where('status', '1')->get();
@endphp
@foreach($manualpay as $manual)
@if($manual->image != '' && file_exists(public_path().'/images/manualpayment/'.$manual->image) )
@endif
@endforeach
@if($gsetting->aamarpay_enable == 1)
@php
$user_name = Auth::user()->fname;
$user_email = Auth::user()->email;
$user_mobile = Auth::user()->email;
@endphp
{!!
aamarpay_post_button([
'cus_name' => $user_name, // Customer name
'cus_email' => $user_email, // Customer email
'cus_phone' => $user_mobile // Customer Phone
], $mainpay, 'Proceed', 'btn btn-sm btn-primary')
!!}
@endif
@if($gsetting->braintree_enable == 1)
{{ __('Checkout With Braintree')}}
@endif
@php
$wallet_settings = App\WalletSettings::first();
@endphp
@if(isset($wallet_settings) && $wallet_settings->status == 1)
{{ __('Checkout With Wallet') }}
@if(isset(auth()->user()->wallet))
@if(auth()->user()->wallet->status == 1)
@if(round(auth()->user()->wallet->balance) >= sprintf("%.2f",Crypt::decrypt(strip_tags($secureamount))))
@else
{{ __('Insufficient Wallet Balance') }}
@endif
@endif
@endif
@endif
@if(Module::has('MPesa') && Module::find('MPesa')->isEnabled())
@include('mpesa::front.checkout_form')
@endif
@if($gsetting->payflexi_enable == 1)
@php
$array = array('title' => 'Online Course');
@endphp
@endif
@if(Module::has('Esewa') && Module::find('Esewa')->isEnabled())
@include('esewa::front.checkout_form')
@endif
@if(Module::has('Smanager') && Module::find('Smanager')->isEnabled())
@include('smanager::front.checkout_form')
@endif
@if(Module::has('Paytab') && Module::find('Paytab')->isEnabled())
@include('paytab::front.checkout_form')
@endif
@if(Module::has('DPOPayment') && Module::find('DPOPayment')->isEnabled())
@include('dpopayment::front.checkout_form')
@endif
@if(Module::has('AuthorizeNet') && Module::find('AuthorizeNet')->isEnabled())
@include('authorizenet::front.checkout_form')
@endif
@if(Module::has('Bkash') && Module::find('Bkash')->isEnabled())
@include('bkash::front.checkout_form')
@endif
@if(Module::has('Midtrains') && Module::find('Midtrains')->isEnabled())
@include('midtrains::front.checkout_form')
@endif
@if(Module::has('SquarePay') && Module::find('SquarePay')->isEnabled())
@include('squarepay::front.checkout_form')
@endif
@if(Module::has('Worldpay') && Module::find('Worldpay')->isEnabled())
@include('worldpay::front.checkout_form')
@endif
@if(Module::has('Onepay') && Module::find('Onepay')->isEnabled())
@include('onepay::front.checkout_form')
@endif
@endif