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