@extends('backend.admin-master') @section('site-title') {{__('Payment Settings')}} @endsection @section('style') @include('backend.partials.media-upload.style') @endsection @section('content')
@include('backend.partials.message')

{{__("Payment Gateway Settings")}}

@csrf
@php $all_currency_position = ['left','right']; @endphp
@php $global_currency = get_static_option('site_global_currency');@endphp @if($global_currency != 'USD')
{{sprintf(__('enter %1$s to USD exchange rate. eg: 1 %2$s = ? USD'),$global_currency,$global_currency) }}
@endif @if($global_currency != 'INR' && !empty(get_static_option('paytm_gateway') || !empty(get_static_option('razorpay_gateway'))))
{{__('enter '.$global_currency.' to INR exchange rate. eg: 1'.$global_currency.' = ? INR')}}
@endif @if($global_currency != 'NGN' && !empty(get_static_option('paystack_gateway') ))
{{__('enter '.$global_currency.' to NGN exchange rate. eg: 1'.$global_currency.' = ? NGN')}}
@endif

{{__("Available Currency For Paypal is")}} {{implode(',',paypal_gateway()->supported_currency_list())}}

{{__('if your currency is not available in paypal, it will convert you currency value to USD value based on your currency exchange rate.')}}

{{__("Available Currency For Paytm is")}} {{implode(',',paytm_gateway()->supported_currency_list())}}

{{__('if your currency is not available in paytm, it will convert you currency value to INR value based on your currency exchange rate.')}}

{{__("Stripe supported currency ")}} {{implode(',',stripe_gateway()->supported_currency_list())}}

{{__("Available Currency For Razorpay is, ['INR']")}}

{{__('if your currency is not available in Razorpay, it will convert you currency value to INR value based on your currency exchange rate.')}}

{{__("Available Currency For Paystack is")}} {{implode(',',paystack_gateway()->supported_currency_list())}}

{{__('if your currency is not available in Paystack, it will convert you currency value to NGN value based on your currency exchange rate.')}}

{{__('Don\'t forget to put below url to "Settings > API Key & Webhook > Callback URL" in your paystack admin panel')}}

{{__("Available Currency For Mollie is, ['AED','AUD','BGN','BRL','CAD','CHF','CZK','DKK','EUR','GBP','HKD','HRK','HUF','ILS','ISK','JPY','MXN','MYR','NOK','NZD','PHP','PLN','RON','RUB','SEK','SGD','THB','TWD','USD','ZAR']")}}

{{__('if your currency is not available in mollie, it will convert you currency value to USD value based on your currency exchange rate.')}}

{{__("Available Currency For Flutterwave is, ['BIF','CAD','CDF','CVE','EUR','GBP','GHS','GMD','GNF','KES','LRD','MWK','MZN','NGN','RWF','SLL','STD','TZS','UGX','USD','XAF','XOF','ZMK','ZMW','ZWD']")}}

{{__('if your currency is not available in flutterwave, it will convert you currency value to USD value based on your currency exchange rate.')}}

@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection