Differentiate new and under warranty service types
This commit is contained in:
parent
53292697a2
commit
645b781858
1 changed files with 7 additions and 5 deletions
|
|
@ -4,13 +4,15 @@ namespace App\Ramcar;
|
||||||
|
|
||||||
class ServiceType
|
class ServiceType
|
||||||
{
|
{
|
||||||
const BATTERY_REPLACEMENT = 'battery';
|
const BATTERY_REPLACEMENT_NEW = 'battery_new';
|
||||||
const TIRE_REPAIR = 'tire';
|
const BATTERY_REPLACEMENT_WARRANTY = 'battery_warranty';
|
||||||
const OVERHEAT_ASSITANCE = 'overheat';
|
const TIRE_REPAIR = 'tire';
|
||||||
const EMERGENCY_REFUEL = 'fuel';
|
const OVERHEAT_ASSITANCE = 'overheat';
|
||||||
|
const EMERGENCY_REFUEL = 'fuel';
|
||||||
|
|
||||||
const COLLECTION = [
|
const COLLECTION = [
|
||||||
'battery' => 'Battery Replacement',
|
'battery_new' => 'Battery Replacement (New)',
|
||||||
|
'battery_warranty' => 'Battery Replacement (Under Warranty)',
|
||||||
'tire' => 'Tire Repair',
|
'tire' => 'Tire Repair',
|
||||||
'overheat' => 'Overheat Assistance',
|
'overheat' => 'Overheat Assistance',
|
||||||
'fuel' => 'Emergency Refuel',
|
'fuel' => 'Emergency Refuel',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue