Add Enums and formtypes
This commit is contained in:
11
src/Enums/GenderType.php
Normal file
11
src/Enums/GenderType.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum GenderType: string
|
||||
{
|
||||
case MALE = 'male';
|
||||
case FEMALE = 'female';
|
||||
case OTHER = 'other';
|
||||
case TRANSGENDER = 'transgender';
|
||||
}
|
Reference in New Issue
Block a user