/home/kueuepay/public_html/app/Constants/GlobalConst.php
<?php

namespace App\Constants;

class GlobalConst {
    const USER_PASS_RESEND_TIME_MINUTE = "1";

    const ACTIVE = true;
    const BANNED = false;
    const SUCCESS = true;
    const DEFAULT_TOKEN_EXP_SEC = 3600;

    const VERIFIED = 1;
    const APPROVED = 1;
    const PENDING = 2;
    const REJECTED = 3;
    const DEFAULT = 0;
    const UNVERIFIED = 0;

    const USER      = "USER";
    const ADMIN = "ADMIN";

    const TRANSFER  = "transfer";
    const EXCHANGE  = "exchange";
    const ADD       = "add";
    const OUT       = "out";
    const PAYMENT   = "payment";

    const INVEST_PROFIT_DAILY_BASIS = "DAILY-BASIS";
    const INVEST_PROFIT_ONE_TIME = "ONE-TIME";

    const RUNNING   = 2;
    const COMPLETE  = 1;
    const CANCEL = 3;

    const INVESTMENT = "INVESTMENT";
    const PROFIT     = "PROFIT";

    const UNKNOWN = "UNKNOWN";
    const USEFUL_LINK_PRIVACY_POLICY = "PRIVACY_POLICY";


    const ENV_SANDBOX               = "SANDBOX";
    const ENV_PRODUCTION            = "PRODUCTION";

    const STRIPE          = "stripe";
    const CARDMETHOD      = "card-method";

    const TRANSFER_MONEY    = "transfer-money";
    const ADD_MONEY         = "add-money";
    const WALLET            = "wallet";
    const SYSTEM_MAINTENANCE       = "system-maintenance";
}
Payment System
top

Simple Steps to Complete Your Payment Securely and Efficiently

Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.

  • Go to the Payment Section: Access the payment area on our website or app.
  • Choose Your Payment Method: Select your preferred payment option.
  • Enter Payment Details: Provide the necessary payment information.
  • Verify Your Information: Check that all details are correct.
  • Confirm Your Payment: Click "Submit Payment" to complete the transaction.
img