@extends('layouts.app') @section('title', 'Payment gateways') @section('section', 'Settings') @php $mfConnected = ! empty($mf['token']); $tapConnected = ! empty($tap['secret_key']); @endphp @section('content')

Settings

Payment gateways

Connect the accounts you use to collect payments from your customers. These keys belong to your business — checkout uses them to charge KNET, mada, cards and Apple Pay.

{{-- ── MyFatoorah ── --}}
@csrf

MyFatoorah

Hosted payment link

@if ($mfConnected) Connected @else Not connected @endif
KNETmada Apple PayVisaMastercard

Sandbox: apitest.myfatoorah.com · Live: api.myfatoorah.com (region-specific)

@if ($mfConnected) @endif
{{-- ── Tap ── --}}
@csrf

Tap

Hosted charge

@if ($tapConnected) Connected @else Not connected @endif
KNETmada BenefitApple PayCards

Same URL for sandbox and live — the key decides the mode.

@if ($tapConnected) @endif

🔒 Keys are stored against your store only and never shared with other stores on the platform. Card details are entered on the provider's secure page — they never touch this server.

@endsection