From 4982508381fc6374bf8a9950241921a62b5b163b Mon Sep 17 00:00:00 2001 From: vasya Date: Sat, 21 Mar 2026 20:41:23 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D1=8F?= =?UTF-8?q?=D1=8E=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=20Enum=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D1=85=D1=80=D0=B0=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D0=B4=D0=BE=D1=81=D1=82=D1=83=D0=BF=D0=BD=D1=8B=D1=85=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=BB=D0=BE=D0=B3=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=B1=D0=B8=D0=B7=D0=BD=D0=B5=D1=81-?= =?UTF-8?q?=D0=B4=D0=B5=D0=B9=D1=81=D1=82=D0=B2=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Enums/LogBusinessEvents.php | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/Enums/LogBusinessEvents.php diff --git a/app/Enums/LogBusinessEvents.php b/app/Enums/LogBusinessEvents.php new file mode 100644 index 0000000..799bf8f --- /dev/null +++ b/app/Enums/LogBusinessEvents.php @@ -0,0 +1,36 @@ + 'создание', + self::Edit => 'редактирование', + self::Archive => 'архивация', + self::Restore => 'восстановление', + self::Delete => 'удаление', + self::Cancel => 'отмена', + }; + } +}