modal show global

This commit is contained in:
xiaomlove
2022-08-10 17:38:05 +08:00
parent 72b80887a4
commit e9b141fc00
34 changed files with 1106 additions and 175 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
class UsernameChangeLog extends NexusModel
{
protected $fillable = ['uid', 'username_old', 'username_new', ];
public $timestamps = true;
public function user()
{
return $this->belongsTo(User::class, 'uid');
}
}