topnotch_website/app/Enums/OrderStatus.php

15 lines
304 B
PHP
Raw Normal View History

2024-09-03 15:15:57 -07:00
<?php
namespace App\Enums;
enum OrderStatus: string
{
2024-09-09 15:29:31 -07:00
// case ON_HOLD = 'On hold';
2024-09-03 15:15:57 -07:00
case APPROVED = 'Approved';
case PRODUCTION = 'Production';
2024-09-09 15:29:31 -07:00
// case COMPLETED = 'Completed';
case SHIPPED = 'Shipped';
case INVOICED = 'Invoiced';
// case CANCELLED = 'Cancelled';
2024-09-03 15:15:57 -07:00
}