Add Enums and formtypes

This commit is contained in:
2024-12-08 17:07:54 -05:00
parent 1f82c8006f
commit 6bde369bcd
8 changed files with 383 additions and 0 deletions

11
src/Enums/GenderType.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum GenderType: string
{
case MALE = 'male';
case FEMALE = 'female';
case OTHER = 'other';
case TRANSGENDER = 'transgender';
}