mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-18 15:05:03 +08:00
15 lines
186 B
PHP
15 lines
186 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class LoginLog extends NexusModel
|
||
|
|
{
|
||
|
|
public $timestamps = true;
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'uid', 'ip', 'country', 'city', 'client'
|
||
|
|
];
|
||
|
|
|
||
|
|
|
||
|
|
}
|