Palzin Track
Get 15% off with code PTRACKSIGNUP15 

Laravel Diary Logo

Digging deeper into PHP 8.1 enums

Enumerations is a way to create a native type that has a limited number of possible values. An easy example of this could be the status of an order, possible values for this could be Preparing, Packaged, Sent, and Delivered. To easily limit these statuses, we could create an enum in PHP8.1 as shown below and use this as the...