Add GCash to payment methods. #574

This commit is contained in:
Korina Cordero 2021-06-01 09:02:01 +00:00
parent dc8adbd139
commit 3eaa307ac0

View file

@ -8,11 +8,13 @@ class ModeOfPayment extends NameValue
const CREDIT_CARD = 'credit_card'; const CREDIT_CARD = 'credit_card';
const DEBIT_CARD = 'debit_card'; const DEBIT_CARD = 'debit_card';
const INSTALLMENT = 'installment'; const INSTALLMENT = 'installment';
const GCASH = 'gcash';
const COLLECTION = [ const COLLECTION = [
'cash' => 'Cash', 'cash' => 'Cash',
'credit_card' => 'Credit Card', 'credit_card' => 'Credit Card',
'debit_card' => 'Debit Card', 'debit_card' => 'Debit Card',
'installment' => 'Installment - BDO', 'installment' => 'Installment - BDO',
'gcash' => 'GCash',
]; ];
} }