topnotch_website/app/Enums/OrderStatus.php
2024-09-18 14:59:34 -07:00

12 lines
188 B
PHP

<?php
namespace App\Enums;
enum OrderStatus: string
{
case APPROVED = 'Approved';
case PRODUCTION = 'Production';
case SHIPPED = 'Shipped';
case INVOICED = 'Invoiced';
}