mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
Add account logs to admin panel accounts editor
This commit is contained in:
14
system/src/Models/AccountAction.php
Normal file
14
system/src/Models/AccountAction.php
Normal 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'];
|
||||
|
||||
}
|
Reference in New Issue
Block a user