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

Payment Gateway Settings

Manage payment gateways, commissions, and tax deductions.

@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
@csrf

Enable Default Gateway

Select which payment method will be active for users.

@foreach(['razorpay' => 'Razorpay', 'paypal' => 'PayPal', 'stripe' => 'Stripe', 'manual' => 'Manual Pay'] as $value => $label) @endforeach

Razorpay Configuration

PayPal Configuration

Stripe Configuration

Fee Structure

@endsection