11 lines
179 B
PHP
11 lines
179 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum UserRole: string
|
|
{
|
|
case WINEMAKER = 'winemaker';
|
|
case ADMIN = 'admin';
|
|
case EMPLOYEE = 'employee';
|
|
case CUSTOMER = 'customer';
|
|
}
|