Laravel has a form helper which takes as input a dictionary. I like to keep the values for all of these in a central place. For example, I might have an enum
Building on @Banfords answer, with PHP7 constants can now be arrays:
class User extends Authenticatable { /** * The possible genders a user can be. */ const GENDER = [ 'Male', 'Female', 'Unspecified' ]; ...