Files
hpt_inventory/app/Enums/SexEnum.php
2026-05-25 11:08:52 +07:00

18 lines
296 B
PHP

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static OptionOne()
* @method static static OptionTwo()
* @method static static OptionThree()
*/
final class SexEnum extends Enum
{
const M = 'Male';
const F = 'Female';
const B = 'Both Male & Female';
}