Asfia Aimanasfiaaiman.hashnode.dev·Sep 17, 2024Mastering Enums in Laravel: Handling Enum Values in Blade TemplatesEnums are a powerful feature in Laravel that help maintain clean and expressive code. However, when working with enums in Blade templates, it is important to understand how to handle them correctly to avoid unexpected behavior. In this post, we will ...38 reads#Blade Templates
Harsh Chandwaniharshchandwani.hashnode.dev·Aug 25, 2024Enums in TypeScriptHere is the typescript file where I have compared enums with types //Okay now lets do this //basically when want to have a function, that should only some particular values, and it will be string //one option is to create a if statment that can handl...TypeScript
Prabhdeep Singh Basraprabhdeep.hashnode.dev·Jul 12, 2022Enums in JavaEnums in java are a special type of data type that lets a variable only have a set of predefined constants. The most common example are days in a week ( MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY ) or cards in a standard deck, seasons etc...28 readsJava