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:
9
app/Domains/Logging/Enums/ValueChangeActorType.php
Normal file
9
app/Domains/Logging/Enums/ValueChangeActorType.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\Logging\Enums;
|
||||
|
||||
enum ValueChangeActorType: string
|
||||
{
|
||||
case User = 'user';
|
||||
case System = 'system';
|
||||
}
|
||||
Reference in New Issue
Block a user