@if ($gateway->code < 1000 && $gateway->extra)
@lang('Configurations')
@foreach ($gateway->extra as $key => $param)
@endforeach
@endif
@lang('Global Setting for') {{ __($gateway->name) }}
@foreach ($parameters->where('global', true) as $key => $param)
@endforeach
@isset($gateway->currencies)
@foreach ($gateway->currencies as $gatewayCurrency)
@if ($parameters->where('global', false)->count() != 0)
@php
$globalParameters = json_decode($gatewayCurrency->gateway_parameter);
@endphp
@foreach ($parameters->where('global', false) as $key => $param)
@endforeach
@endif
@php $currencyIndex++ @endphp
@endforeach
@endisset
@if ($parameters->where('global', false)->count() != 0)
@foreach ($parameters->where('global', false) as $key => $param)
@endforeach
@endif
@can('admin.gateway.automatic.update')
@endcan