Add account logs to admin panel accounts editor

This commit is contained in:
slawkens
2023-09-03 21:18:58 +02:00
parent d90810cf84
commit 8c3b73ca9e
2 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace MyAAC\Models;
use Illuminate\Database\Eloquent\Model;
class AccountAction extends Model {
protected $table = TABLE_PREFIX . 'account_actions';
public $timestamps = false;
protected $fillable = ['account_id', 'ip', 'ipv6', 'date', 'action'];
}