@extends('layouts.admin') @section('title', 'Payment Gateway Settings') @section('content')

Payment Gateway Settings

Add Manual Gateway Add New Gateway

Manage Payment Gateways

@forelse($gateways as $gateway)
{{ $gateway->gateway_name }}
{{ $gateway->is_active ? 'Active' : 'Inactive' }} {{ $gateway->is_manual ? 'Manual' : 'Automated' }} {{ $gateway->description ?? 'No description available' }}
is_active ? 'checked' : '' }} id="activeToggle{{ $gateway->id }}" onchange="toggleGatewayStatus({{ $gateway->id }}, this)">
@csrf @method('PUT')
@empty
No Payment Gateways Found
Add New Gateway
@endforelse
@endsection