Update ticket types #21

This commit is contained in:
Ramon Gutierrez 2018-02-26 15:14:38 +08:00
parent 787eb32afd
commit fd982a1e05

View file

@ -5,16 +5,19 @@ namespace App\Ramcar;
class TicketType extends NameValue class TicketType extends NameValue
{ {
const COMPLAINT = 'complaint'; const COMPLAINT = 'complaint';
const QUESTION = 'question'; const INQUIRY = 'inquiry';
const ORDERS = 'orders'; const ORDERS = 'orders';
const BILLING = 'billing'; const BILLING = 'billing';
const OTHER = 'other'; const OTHER = 'other';
const FOR_FOLLOW_UP = 'for_follow_up';
const COLLECTION = [ const COLLECTION = [
'complaint' => 'Complaint', 'complaint' => 'Complaint',
'question' => 'Question', 'inquiry' => 'Inquiry',
'orders' => 'Orders', 'orders' => 'Orders',
'billing' => 'Billing', 'billing' => 'Billing',
'other' => 'Other', 'other' => 'Other',
'for_follow_up' => 'For follow-up',
]; ];
} }