PXG_2026_API/app/Models/AuditLog.php

13 lines
247 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class AuditLog extends Model
{
protected $fillable = ['event_id','actor_user_id','action','entity_type','entity_id','meta'];
protected $casts = ['meta' => 'array'];
}