Add debit card to the mode of payment. #500

This commit is contained in:
Korina Cordero 2020-09-18 06:29:37 +00:00
parent 012c486602
commit 86519d79c5

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',
];
}