Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin_new2
/
app
/
Models
/
Filename :
ChangeLog.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ChangeLog extends Model { use HasFactory; protected $table = 'change_log'; protected $primaryKey = 'change_log_id'; protected $fillable = [ 'change_log_id', 'entity_type', 'entity_id', 'changed_by_user_id', 'change_operation', 'field_values_json_old', 'field_values_json_new', 'user_remarks', 'system_remarks', 'created_at', 'updated_at', 'deleted_at', ]; }