resq/src/Ramcar/ModeOfPayment.php

18 lines
427 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 COLLECTION = [
'cash' => 'Cash',
'credit_card' => 'Credit Card',
'debit_card' => 'Debit Card',
'installment' => 'Installment - BDO',
];
}