Update ticket types #21
This commit is contained in:
parent
787eb32afd
commit
fd982a1e05
1 changed files with 9 additions and 6 deletions
|
|
@ -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',
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue