forked from admin/services_core
ticker work proses
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TicketStatus:string
|
||||
{
|
||||
case DRAFT = 'draft';
|
||||
case OPEN = 'open';
|
||||
case APPROVED = 'approved';
|
||||
case ASSIGNED = 'assigned';
|
||||
case PROGRESS = 'progress';
|
||||
case PENDING = 'pending';
|
||||
case RESOLVED = 'resolved';
|
||||
case CLOSED = 'closed';
|
||||
case CANCELLED = 'cancelled';
|
||||
case REJECTED = 'rejected';
|
||||
}
|
||||
Reference in New Issue
Block a user