🐶Upay
Configuring Upay payment gateway.
To configure Upay for use with Takaden, you will need to set the following environment variables in your .env
file:
UPAY_MERCHANT_ID: This is the merchant ID (MID) provided by Upay after you register as a merchant.
UPAY_MERCHANT_KEY: This is the merchant key provided by Upay affter you register as a merchant.
UPAY_MERCHANT_CODE: This is the merchant code provided by Upay after you register as a merchant.
UPAY_MERCHANT_NAME: This is the name of your business as registered with Upay.
UPAY_MERCHANT_MOBILE: This is the mobile number (Wallet) associated with your Upay merchant account.
To set these environment variables in your .env
file, add the following lines, replacing the placeholder values with your actual Upay credentials:
UPAY_MERCHANT_ID=YOUR_UPAY_MERCHANT_ID
UPAY_MERCHANT_KEY=YOUR_UPAY_MERCHANT_KEY
UPAY_MERCHANT_CODE=YOUR_UPAY_MERCHANT_CODE
UPAY_MERCHANT_NAME=YOUR_UPAY_MERCHANT_NAME
UPAY_MERCHANT_MOBILE=YOUR_UPAY_MERCHANT_MOBILE
Last updated