22 lines
749 B
PHP
22 lines
749 B
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 TIRE_REPAIR = 'tire';
|
|
const OVERHEAT_ASSITANCE = 'overheat';
|
|
const EMERGENCY_REFUEL = 'fuel';
|
|
|
|
const COLLECTION = [
|
|
'battery_new' => 'Battery Replacement (New)',
|
|
'battery_warranty' => 'Battery Replacement (Under Warranty)',
|
|
'jumpstart_troubleshoot' => 'Jumpstart or Troubleshoot',
|
|
'tire' => 'Tire Repair',
|
|
'overheat' => 'Overheat Assistance',
|
|
'fuel' => 'Emergency Refuel',
|
|
];
|
|
}
|