Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
composer require modempay/modempay-php
.env
MODEMPAY_API_KEY=your_api_key_here MODEMPAY_WEBHOOK_SECRET=your_webhook_secret_here
use ModemPay\Laravel\Facades\ModemPay; $payment = ModemPay::paymentIntents()->create([ 'amount' => 5000, 'currency' => 'GMD', ]); return redirect($payment->data->payment_link);