first&last
This commit is contained in:
@@ -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';
|
||||
}
|
||||
Reference in New Issue
Block a user