@extends('layouts.admin') @push('title', get_phrase('Payment setting')) @push('meta')@endpush @push('css')@endpush @section('content') @php $System_currencies = App\Models\Currency::get(); @endphp

{{ get_phrase('Payment Settings') }}

@php $payment_gateways = App\Models\Payment_gateway::get(); @endphp

{{ get_phrase('Currency settings') }}

@csrf
@foreach ($payment_gateways as $payment_gateway)

{{ $payment_gateway->title }} {{ get_phrase('settings') }}

@csrf @if ($payment_gateway->identifier != 'offline')
@foreach (json_decode($payment_gateway['keys'], true) as $key => $value) @if ($key == 'theme_color') @else
@endif @endforeach @else
@foreach (json_decode($payment_gateway['keys'], true) as $key => $value)
@endforeach @endif
@endforeach
@endsection @push('js') @endpush