For the complete documentation index, see llms.txt. This page is also available as Markdown.

Usage

SimPay-Laravel is accessible through two methods:

  1. Facade:

    use SimPay\Laravel\Facades\SimPay;
    
    SimPay::payment();
    SimPay::directBilling();
    SimPay::sms();
  2. Using app container:

    app('simpay')->payment();
    app('simpay')->directBilling();
    app('simpay')->sms();

Last updated