Merge branch '500-cmb-add-debit-card-to-mode-of-payment' into '488-cmb-live'

Add debit card to the mode of payment. #500

See merge request jankstudio/resq!585
This commit is contained in:
Kendrick Chan 2020-09-18 06:41:52 +00:00
commit 9606e9aa1c

View file

@ -10,6 +10,7 @@ class CMBModeOfPayment extends NameValue
const CREDIT_CARD = 'credit_card';
const ONLINE_TRANSFER = 'online_transfer';
const E_WALLET = 'e_wallet';
const DEBIT_CARD = 'debit_card';
const COLLECTION = [
'cash' => 'Cash',
@ -18,5 +19,6 @@ class CMBModeOfPayment extends NameValue
'credit_card' => 'Credit Card',
'online_transfer' => 'Online Transfer',
'e_wallet' => 'E-Wallet',
'debit_card' => 'Debit Card',
];
}