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

12 lines
195 B
PHTML

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