@extends('root') @section('title', 'Payment Gateway Configuration') @section('content')
@include('components.breadcrumb', [ 'title' => 'Payment Gateway', 'links' => [ ['url' => route('admin.dashboard'), 'label' => 'Dashboard'], ], 'current' => 'Payment Gateway' ])
@foreach($gateways as $gateway)
@if($gateway->gateway_name === 'pakar_digital') @else @endif
{{ $gateway->display_name }}
@if($gateway->is_active) Aktif @else Nonaktif @endif
@if($gateway->gateway_name === 'pakar_digital')

Gunakan API dari Pakar Digital

Email API:

{{ $gateway->email_api ? Str::mask($gateway->email_api, '*', 3, 10) : '-' }}

Password API:

{{ $gateway->password_api ? '********' : '-' }}

@else

Gunakan Midtrans Snap untuk pembayaran

Server Key:

{{ $gateway->server_key ? '********' : '-' }}

Client Key:

{{ $gateway->client_key ? Str::limit($gateway->client_key, 15, '...') : '-' }}

@endif
{{ $gateway->is_production ? 'Production' : 'Sandbox' }}
@endforeach
Transaksi Topup
Lihat Semua
Order ID Client Gateway Amount Status Tanggal
@endsection @push('scripts') @endpush