first commit

This commit is contained in:
2026-01-11 17:11:43 +00:00
commit 55bf184d53
157 changed files with 20499 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ActivityLog extends Model
{
public $timestamps = false;
protected $fillable = ['user_id', 'action', 'model_type', 'model_id', 'old_data', 'new_data', 'created_at'];
protected $casts = ['old_data' => 'array', 'new_data' => 'array', 'created_at' => 'datetime'];
}