ticker work proses

This commit is contained in:
Wian Drs
2026-06-22 13:34:49 +07:00
parent 844b8a0ff0
commit b52e67c428
22 changed files with 1193 additions and 16 deletions
+17
View File
@@ -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';
}