You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
topnotch_website/app/Enums/OrderStatus.php

15 lines
292 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';
}