%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/spatie/enum/docs/usage/ |
Current File : /home/graphicd/public_html/vebto/vendor/spatie/enum/docs/usage/make-enum.md |
--- title: Make Enum weight: 2 --- ## Make by name ```php $monday = WeekDayEnum::make('monday'); $monday = WeekDayEnum::monday(); ``` ## Make by value ```php $monday = WeekDayEnum::make('Montag'); ``` ## Make by index ```php $monday = WeekDayEnum::make(1); ``` ## Get all ```php WeekDayEnum::getAll(); // returns an array of `WeekDayEnum` instances ```