first commit

This commit is contained in:
brusnitsyn
2026-06-24 17:20:43 +09:00
commit 43499acf1c
165 changed files with 25929 additions and 0 deletions

21
app/Facades/Audit.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
namespace App\Facades;
use App\Models\AuditLog;
use App\Services\Audit\AuditService;
use Illuminate\Support\Facades\Facade;
/**
* @method static AuditLog log(string $eventType, string $action = '', ?string $resource = null, string $result = 'success', array<string, mixed> $details = [])
* @method static array<int, mixed> verifyIntegrity()
*
* @see AuditService
*/
class Audit extends Facade
{
protected static function getFacadeAccessor(): string
{
return AuditService::class;
}
}