Files
nexusphp/app/Models/LoginLog.php
T

15 lines
186 B
PHP
Raw Normal View History

2023-01-31 16:38:21 +08:00
<?php
namespace App\Models;
class LoginLog extends NexusModel
{
public $timestamps = true;
protected $fillable = [
'uid', 'ip', 'country', 'city', 'client'
];
}