feat: Implement value change logging functionality with models, traits, and migration; add tests for logging behavior and value change mapping

This commit is contained in:
2026-08-03 15:43:50 -03:00
parent 3b2977a330
commit c4b317d5fc
6 changed files with 307 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Domains\Logging\Enums;
enum ValueChangeActorType: string
{
case User = 'user';
case System = 'system';
}