This commit is contained in:
2025-12-20 11:36:14 +03:30
parent 3ecfdf02d9
commit 0a2df262e1
7 changed files with 69 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
<?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 => "اقدام شده",
};
}
}