Proper level naming

This commit is contained in:
Ryan Prather 2024-12-07 22:53:19 -05:00
parent b9bc947466
commit a1603899f2

View File

@ -4,9 +4,9 @@ namespace App\Enums;
enum CaseLevel: string
{
case PARAPROFESSIONAL = 'PARAPROFESSIONAL';
case BACHELOR = 'BACHELOR';
case MASTER = 'MASTER';
case DOCTORATE = 'DOCTORATE';
case ADMIN = 'ADMIN';
case PARAPROFESSIONAL = 'Paraprofessional';
case BACHELOR = 'Bachelor';
case MASTER = 'Master';
case DOCTORATE = 'Doctorate';
case ADMIN = 'Admin';
}