29 lines
795 B
PHP
29 lines
795 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class TicketType extends NameValue
|
|
{
|
|
const COMPLAINT = 'complaint';
|
|
const INQUIRY = 'inquiry';
|
|
const ORDERS = 'orders';
|
|
const BILLING = 'billing';
|
|
const OTHER = 'other';
|
|
const FOR_FOLLOW_UP = 'for_follow_up';
|
|
const RESQ_INQUIRY = 'resq_inquiry';
|
|
|
|
const BATTERY_QUEUE = 'battery_queue';
|
|
const RESQ_QUEUE = 'resq_queue';
|
|
|
|
const COLLECTION = [
|
|
'complaint' => 'Complaint',
|
|
'inquiry' => 'Inquiry',
|
|
'orders' => 'Orders',
|
|
'billing' => 'Billing',
|
|
'other' => 'Other',
|
|
'for_follow_up' => 'For follow-up',
|
|
'resq_inquiry' => 'RESQ Inquiry',
|
|
'battery_queue' => 'Battery Queue (XFER)',
|
|
'resq_queue' => 'Resq Queue (XFER)',
|
|
];
|
|
}
|