Files
trafficpumper/app/Enums/ProjectStatus.php
T
2026-08-29 15:53:53 +03:00

18 lines
313 B
PHP

<?php
namespace App\Enums;
enum ProjectStatus: string
{
case Active = 'active';
case Archived = 'archived';
public function label(): string
{
return match ($this) {
self::Active => __('states.active'),
self::Archived => __('states.archived'),
};
}
}