28 lines
1 KiB
PHP
28 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class ServiceType extends NameValue
|
|
{
|
|
const BATTERY_REPLACEMENT_NEW = 'battery_new';
|
|
const BATTERY_REPLACEMENT_WARRANTY = 'battery_warranty';
|
|
const JUMPSTART_TROUBLESHOOT = 'jumpstart_troubleshoot';
|
|
const JUMPSTART_WARRANTY = 'jumpstart_warranty';
|
|
const POST_RECHARGED = 'post_recharged';
|
|
const POST_REPLACEMENT = 'post_replacement';
|
|
const TIRE_REPAIR = 'tire';
|
|
const OVERHEAT_ASSISTANCE = 'overheat';
|
|
const EMERGENCY_REFUEL = 'fuel';
|
|
|
|
const COLLECTION = [
|
|
'battery_new' => 'Battery Sales',
|
|
'battery_warranty' => 'Under Warranty',
|
|
'jumpstart_troubleshoot' => 'General Service - Jumpstart',
|
|
'jumpstart_warranty' => 'General Service - Warranty',
|
|
'post_recharged' => 'Post - Recharged',
|
|
'post_replacement' => 'Post - Replacement',
|
|
'tire' => 'Flat Tire',
|
|
'overheat' => 'Overheat Assistance',
|
|
'fuel' => 'Fuel',
|
|
];
|
|
}
|