mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
35 lines
889 B
PHP
35 lines
889 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Database\Factories\AuditFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Support\Carbon;
|
|
use OwenIt\Auditing\Models\Audit as PackageAuditModel;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string|null $user_type
|
|
* @property string|null $user_id
|
|
* @property string $event
|
|
* @property string $auditable_type
|
|
* @property string $auditable_id
|
|
* @property array<string, mixed>|null $old_values
|
|
* @property array<string, mixed>|null $new_values
|
|
* @property string|null $url
|
|
* @property string|null $ip_address
|
|
* @property string|null $user_agent
|
|
* @property string|null $tags
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*
|
|
* @method static AuditFactory factory()
|
|
*/
|
|
class Audit extends PackageAuditModel
|
|
{
|
|
/** @use HasFactory<AuditFactory> */
|
|
use HasFactory;
|
|
}
|