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
PHTML

3 months ago
<?php
namespace App\Enums;
enum OrderStatus: string
{
3 months ago
// case ON_HOLD = 'On hold';
3 months ago
case APPROVED = 'Approved';
case PRODUCTION = 'Production';
3 months ago
// case COMPLETED = 'Completed';
case SHIPPED = 'Shipped';
case INVOICED = 'Invoiced';
// case CANCELLED = 'Cancelled';
3 months ago
}