24 lines
615 B
PHP
24 lines
615 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 COLLECTION = [
|
|
'complaint' => 'Complaint',
|
|
'inquiry' => 'Inquiry',
|
|
'orders' => 'Orders',
|
|
'billing' => 'Billing',
|
|
'other' => 'Other',
|
|
'for_follow_up' => 'For follow-up',
|
|
'resq_inquiry' => 'RESQ Inquiry',
|
|
];
|
|
}
|