Add CustomerNotWaitReason. #453

This commit is contained in:
Korina Cordero 2020-08-04 08:00:21 +00:00
parent 4857645e18
commit 117974d2cb

View file

@ -0,0 +1,16 @@
<?php
namespace App\Ramcar;
class CustomerNotWaitReason extends NameValue
{
const EMERGENCY = 'emergency';
const USE_VEHICLE_NOW = 'use_vehicle_now';
const WITH_APPOINTMENT = 'with_appointment';
const COLLECTION = [
'emergency' => 'Emergency',
'use_vehicle_now' => 'Need to Use Vehicle Now',
'with_appointment' => 'With Appointment',
];
}