19 lines
551 B
PHP
19 lines
551 B
PHP
<?php
|
|
|
|
namespace App\Models\Registries;
|
|
|
|
class EntryState {
|
|
public const AWAITING = 'awaiting';
|
|
public const ACTIVE = 'active';
|
|
public const EXPIRED = 'expired';
|
|
public const SUSPENDED = 'suspended';
|
|
public const CANCELLED = 'cancelled';
|
|
|
|
public const TITLES = [
|
|
self::AWAITING => 'Вводится в действие',
|
|
self::ACTIVE => 'Действует',
|
|
self::EXPIRED => 'Архив',
|
|
self::SUSPENDED => 'Приостановлено',
|
|
self::CANCELLED => 'Отменено'
|
|
];
|
|
} |