@extends('backend.layout.main') @section('content') @push('css') @endpush {{__('db.Payment Gateways')}} {{__('db.The field labels marked with * are required input fields')}}. {!! Form::open(['route' => 'setting.gateway.update', 'files' => true, 'method' => 'post']) !!} @foreach($payment_gateways as $pg) {{$pg->name}} {{__('db.Details')}} @php $modules = json_decode($pg->module_status, true); @endphp @foreach(['pos', 'ecommerce'] as $module) {{ ucfirst($module) }} @endforeach @php $lines = explode(';',$pg->details); $keys = explode(',', $lines[0]); $vals = explode(',', $lines[1]); $results = array_combine($keys, $vals); @endphp @foreach ($results as $key => $value) {{$key}} @if($key == 'Mode') Sandbox Live @else @endif @endforeach @endforeach {!! Form::close() !!} @endsection @push('scripts') @endpush
{{__('db.The field labels marked with * are required input fields')}}.