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

13 lines
220 B
PHTML

3 months ago
<?php
namespace App\Enums;
enum OrderStatus: string
{
case ORDER = 'Order';
case APPROVED = 'Approved';
case PRODUCTION = 'Production';
case COMPLETED = 'Completed';
case CANCELLED = 'Cancelled';
}