14 lines
241 B
PHP
14 lines
241 B
PHP
<?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';
|
|
}
|