From f554658c7fed83558d91c63b9a845c7610c44c79 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Sat, 26 Oct 2024 03:39:50 +0800 Subject: [PATCH] Add subscription as mode of payment #799 --- src/Ramcar/ModeOfPayment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Ramcar/ModeOfPayment.php b/src/Ramcar/ModeOfPayment.php index 139dd18c..172f6a5e 100644 --- a/src/Ramcar/ModeOfPayment.php +++ b/src/Ramcar/ModeOfPayment.php @@ -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', ]; }