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