1. Go to this page and download the library: Download iteks/laravel-enum library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iteks / laravel-enum example snippets
use Iteks\Attributes\Description;
use Iteks\Attributes\Id;
use Iteks\Attributes\Label;
use Iteks\Attributes\Metadata;
use Iteks\Traits\BackedEnum;
use Iteks\Traits\HasAttributes;
enum ExampleBackedEnum: int
{
use BackedEnum;
use HasAttributes;
#[Description('Active status indicating the resource is currently in use')]
#[Id(101)]
#[Label('Active')]
#[Metadata(['status_type' => 'positive', 'display_color' => 'green'])]
case CurrentlyActive = 1;
#[Description('Pending status indicating the resource is awaiting processing or approval')]
#[Id(102)]
#[Label('Pending')]
#[Metadata('{"status_type": "neutral", "display_color": "yellow"}')]
case PendingReview = 2;
#[Description('Temporarily suspended status indicating the resource is on hold')]
#[Id(103)]
#[Label('Suspended (!)')]
#[Metadata([])]
case TemporarilySuspended = 3;
}
#[Description('A collection of status codes')] // Class-level description
enum Status: int
{
#[Description('Operation completed successfully')] // Case-level description
case Success = 200;
}
enum Status: int
{
#[Id(1)]
case Draft = 0;
}
enum Status: int
{
#[Label('In Progress')]
case Processing = 1;
}
sh
# Result:
array:3 [▼
"CurrentlyActive" => array:5 [▼
"simpleValue" => 1
"description" => "Active status indicating the resource is currently in use"
"id" => 101
"label" => "Active"
"metadata" => array:2 [▶]
]
"PendingReview" => array:5 [▼
"simpleValue" => 2
"description" => "Pending status indicating the resource is awaiting processing or approval"
"id" => 102
"label" => "Pending"
"metadata" => "{"status_type": "neutral", "display_color": "yellow"}"
]
"TemporarilySuspended" => array:5 [▼
"simpleValue" => 3
"description" => "Temporarily suspended status indicating the resource is on hold"
"id" => 103
"label" => "Suspended (!)"
"metadata" => []
]
]
sh
# Result:
array:3 [▼
"CurrentlyActive" => array:2 [▼
"description" => "Active status indicating the resource is currently in use"
"metadata" => array:2 [▶]
]
"PendingReview" => array:2 [▼
"description" => "Pending status indicating the resource is awaiting processing or approval"
"metadata" => "{"status_type": "neutral", "display_color": "yellow"}"
]
"TemporarilySuspended" => array:2 [▼
"description" => "Temporarily suspended status indicating the resource is on hold"
"metadata" => []
]
]