@php use App\Services\AddonService\IAddonService; $addonService = app(IAddonService::class); $isStripGatewayEnabled = $addonService->isSAAddonEnabled(ModuleConstants::STRIPE_GATEWAY); @endphp @extends('layouts/layoutMaster') @section('title', __('SA Settings')) @section('page-script') @endsection @section('content')
@csrf
General Settings
{{--
use_per_tenant_map_key ? 'checked' : '' }}>
--}}
Payment Gateways
PayPal
paypal_enabled ? 'checked' : '' }}>
@csrf
Razorpay
razorpay_enabled ? 'checked' : '' }}>
@csrf
@if($isStripGatewayEnabled)
Stripe
stripe_enabled ? 'checked' : '' }}>
@csrf {{--
--}}
@endif
Offline Payments
offline_payment_enabled ? 'checked' : '' }}>
@csrf
@endsection