Edit File: GenderEnum.php
<?php namespace App\Enums; class GenderEnum extends Base { const MALE = 'male'; const FEMALE = 'female'; public static function values(): array { return [ self::MALE, self::FEMALE ]; } }
Back to File Manager