16 lines
312 B
PHP
16 lines
312 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum OrderStatus: string
|
|
{
|
|
case ORDER = 'Order';
|
|
case ON_HOLD = 'On hold';
|
|
case APPROVED = 'Approved';
|
|
case PRODUCTION = 'Production';
|
|
case COMPLETED = 'Completed';
|
|
case SHIPPED = 'Shipped';
|
|
case INVOICED = 'Invoiced';
|
|
case CANCELLED = 'Cancelled';
|
|
}
|