Payment Gateways

Integrate local or custom payment providers to handle subscriptions and top-ups in your multi-tenant setup.

Monetizing your Platform

If you are running Senddera as a SaaS, you can extend the billing system by adding new payment gateways.

The Billing Engine

Senddera's billing engine is abstract, allowing you to plug in any provider that supports webhooks and recurring payments.

Registration Example

// In your Plugin.php
public function register()
{
    $this->app->singleton('my_billing_gateway', function($app) {
        return new MyCustomGateway();
    });
}