Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/app/Enums/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/app/Enums/PaymentMethod.php

<?php
/**
 * Created by PhpStorm.
 * User: dipok
 * Date: 18/4/20
 * Time: 12:42 PM
 */

namespace App\Enums;

interface PaymentMethod
{
    const CASH_ON_DELIVERY = 5;
    const PAYPAL           = 10;
    const STRIPE           = 15;
    const RAZORPAY         = 16;
    const PAYSTACK         = 17;
    const WALLET           = 20;
    const CASH             = 25;
    const CARD             = 30;
    const PAYTM            = 32;
    const PHONEPE          = 33;
    const SSLCOMMERZ       = 34;

}