Add subscription as mode of payment #799

This commit is contained in:
Ramon Gutierrez 2024-10-26 03:39:50 +08:00
parent 74c45b6d18
commit f554658c7f

View file

@ -10,6 +10,7 @@ class ModeOfPayment extends NameValue
const INSTALLMENT = 'installment';
const GCASH = 'gcash';
const CREDIT_CARD_AMEX = 'credit_card_amex';
const SUBSCRIPTION = 'subscription';
const COLLECTION = [
'cash' => 'Cash',
@ -18,5 +19,6 @@ class ModeOfPayment extends NameValue
'installment' => 'Installment - BDO',
'gcash' => 'GCash',
'credit_card_amex' => 'Credit Card - AMEX',
'subscription' => 'Subscription',
];
}