topnotch_website/app/Enums/OrderStatus.php
2024-09-18 15:15:57 -07:00

12 lines
195 B
PHP

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