16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
enum UserRole: string
|
|
{
|
|
case Guest = 'guest';
|
|
case Patient = 'patient';
|
|
case ReferringPhysician = 'referring_physician';
|
|
case Technician = 'technician';
|
|
case Radiologist = 'radiologist';
|
|
case Associate = 'associate';
|
|
case SystemAgent = 'system_agent';
|
|
case Admin = 'admin';
|
|
}
|