Files
backend/app/Enums/MissionViolationStatus.php
2025-12-20 11:36:14 +03:30

17 lines
322 B
PHP

<?php
namespace App\Enums;
enum MissionViolationStatus: int
{
case BEDON_EGHDAM = 0;
case EGHDAM_SHODE = 2;
public function label(): string
{
return match ($this) {
self::BEDON_EGHDAM => "بدون اقدام",
self::EGHDAM_SHODE => "اقدام شده",
};
}
}