login notify + bonus log

This commit is contained in:
xiaomlove
2023-01-31 16:38:21 +08:00
parent 3edb283b62
commit 9c0f458920
26 changed files with 552 additions and 7 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Models;
class LoginLog extends NexusModel
{
public $timestamps = true;
protected $fillable = [
'uid', 'ip', 'country', 'city', 'client'
];
}