24 lines
807 B
PHP
24 lines
807 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class CustomerNotWaitReason extends NameValue
|
|
{
|
|
const EMERGENCY = 'emergency';
|
|
const USE_VEHICLE_NOW = 'use_vehicle_now';
|
|
const WITH_APPOINTMENT = 'with_appointment';
|
|
const POST_REPLACEMENT = 'post_replacement';
|
|
const POST_RECHARGE = 'post_recharge';
|
|
const NORMAL_REQUEST_NOT_URGENT = 'normal_request_not_urgent';
|
|
const RUSH_REQUEST = 'rush_request';
|
|
|
|
const COLLECTION = [
|
|
'emergency' => 'Emergency',
|
|
'use_vehicle_now' => 'Need to Use Vehicle Now',
|
|
'with_appointment' => 'With Appointment',
|
|
'post_replacement' => 'Post Replacement',
|
|
'post_recharge' => 'Post Recharge',
|
|
'normal_request_not_urgent' => 'Normal Request not Urgent (Rush below TAT)',
|
|
'rush_request' => 'Rush Request',
|
|
];
|
|
}
|