@extends('admin.layouts.app') @section('panel')
@csrf

@lang('Global setting for') {{ __($gateway->name) }}

@if (count($supportedCurrencies) > 0)
@lang('Add Currency')
@endif
@if ($gateway->code < 1000 && $gateway->extra) @foreach ($gateway->extra as $key => $param)
@lang('Copy')
@endforeach @endif @foreach ($parameters->where('global', true) as $key => $param)
@endforeach
@forelse ($gateway->currencies as $k => $gatewayCurrency)
{{ __($gateway->name) }} - {{ __($gatewayCurrency->currency) }}
@lang('Range')
{{ __(gs('cur_text')) }}
{{ __(gs('cur_text')) }}
@lang('Charge')
{{ __(gs('cur_text')) }}
%
@lang('Currency')
1 {{ __(gs('cur_text')) }} =
{{ __($gatewayCurrency->baseSymbol()) }}
@if ($parameters->where('global', false)->count() != 0) @php $globalParameters = json_decode($gatewayCurrency->gateway_parameter); @endphp
@lang('Configuration')
@foreach ($parameters->where('global', false) as $key => $param)
@endforeach
@endif
@empty
@lang('No currency is added to this payment gateway')
@endforelse
@endsection @push('breadcrumb-plugins') @endpush @push('script') @endpush