topnotch_website/app/Enums/OrderStatus.php

13 lines
220 B
PHP
Raw Normal View History

2024-09-03 15:15:57 -07:00
<?php
namespace App\Enums;
enum OrderStatus: string
{
case ORDER = 'Order';
case APPROVED = 'Approved';
case PRODUCTION = 'Production';
case COMPLETED = 'Completed';
case CANCELLED = 'Cancelled';
}