18 lines
518 B
PHP
18 lines
518 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class CMBServiceType extends NameValue
|
|
{
|
|
const BATTERY_REPLACEMENT_NEW = 'battery_new';
|
|
const BATTERY_REPLACEMENT_WARRANTY = 'battery_warranty';
|
|
const WARRANTY_CLAIM = 'warranty_claim';
|
|
const JUMPSTART = 'jumpstart';
|
|
|
|
const COLLECTION = [
|
|
'battery_new' => 'Battery Sales',
|
|
'battery_warranty' => 'Warranty Replacement',
|
|
'warranty_claim' => 'Warranty Claim',
|
|
'jumpstart' => 'Jumpstart',
|
|
];
|
|
}
|