Files
nexusphp/app/Models/LoginLog.php
T
2023-01-31 16:38:21 +08:00

15 lines
186 B
PHP

<?php
namespace App\Models;
class LoginLog extends NexusModel
{
public $timestamps = true;
protected $fillable = [
'uid', 'ip', 'country', 'city', 'client'
];
}