first commit

This commit is contained in:
2025-03-05 20:28:54 -06:00
parent f54ca8e341
commit 68ca619829
570 changed files with 111124 additions and 175 deletions

14
Models/UserLogin.php Normal file
View File

@ -0,0 +1,14 @@
<?php
namespace Koneko\VuexyAdmin\Models;
use Illuminate\Database\Eloquent\Model;
class UserLogin extends Model
{
protected $fillable = [
'user_id',
'ip_address',
'user_agent'
];
}