@extends('layout.app') @section('title', __('stripe_payment_gateway_configure')) @section('content')

{{ __('Payment Gateways') }}

@foreach ($paymentGateways as $paymentGateway) @php $configs = json_decode($paymentGateway->config); @endphp

{{ strtoupper($paymentGateway->name) }}

{{ $paymentGateway->is_active ? 'On' : 'Off' }}
@csrf
@foreach ($configs as $key => $value) @php $label = ucwords(str_replace('_', ' ', $key)); @endphp
@endforeach
@endforeach
@endsection @push('scripts') @endpush