This is my enum class. I want a random value every time from this enum class. I am using the PHP 8.1 enum feature.
<?php>
declare(strict_types=1);
namespace App\Enums;
enum Division: string
{
case BARISAL = 'barisal';
case CHITTAGONG = 'chittagong';
case DHAKA = 'dhaka';
case KHULNA = 'khulna';
case RAJSHAHI = 'rajshahi';
case RANGPUR = 'rangpur';
case MYMENSINGH = 'mymensing';
case SYLHET = 'sylhet';
}
<?php>