first&last

This commit is contained in:
sbb45
2026-03-20 15:47:17 +05:00
commit d6441abdd2
230 changed files with 20367 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Enums;
enum StatusSlug: string
{
case NEW = 'new';
case IN_PROGRESS = 'in_progress';
case WAITING = 'waiting';
case RESOLVED = 'resolved';
case CLOSED = 'closed';
case CANCELLED = 'cancelled';
}