Update ticket types #21
This commit is contained in:
parent
787eb32afd
commit
fd982a1e05
1 changed files with 9 additions and 6 deletions
|
|
@ -4,17 +4,20 @@ namespace App\Ramcar;
|
|||
|
||||
class TicketType extends NameValue
|
||||
{
|
||||
const COMPLAINT = 'complaint';
|
||||
const QUESTION = 'question';
|
||||
const ORDERS = 'orders';
|
||||
const BILLING = 'billing';
|
||||
const OTHER = 'other';
|
||||
const COMPLAINT = 'complaint';
|
||||
const INQUIRY = 'inquiry';
|
||||
const ORDERS = 'orders';
|
||||
const BILLING = 'billing';
|
||||
const OTHER = 'other';
|
||||
const FOR_FOLLOW_UP = 'for_follow_up';
|
||||
|
||||
const COLLECTION = [
|
||||
'complaint' => 'Complaint',
|
||||
'question' => 'Question',
|
||||
'inquiry' => 'Inquiry',
|
||||
'orders' => 'Orders',
|
||||
'billing' => 'Billing',
|
||||
'other' => 'Other',
|
||||
'for_follow_up' => 'For follow-up',
|
||||
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue