resq/src/Ramcar/ModeOfPayment.php
2021-06-01 09:02:01 +00:00

20 lines
494 B
PHP

<?php
namespace App\Ramcar;
class ModeOfPayment extends NameValue
{
const CASH = 'cash';
const CREDIT_CARD = 'credit_card';
const DEBIT_CARD = 'debit_card';
const INSTALLMENT = 'installment';
const GCASH = 'gcash';
const COLLECTION = [
'cash' => 'Cash',
'credit_card' => 'Credit Card',
'debit_card' => 'Debit Card',
'installment' => 'Installment - BDO',
'gcash' => 'GCash',
];
}