feat: 更新 Withdraw 模型,添加可填充字段以支持更多用户信息

This commit is contained in:
lingling 2025-03-17 21:57:29 +08:00
parent 6e1047997b
commit f19bb0c01b
1 changed files with 13 additions and 1 deletions

View File

@ -35,5 +35,17 @@ class Withdraw extends Model
// public $timestamps = false;
protected $fillable = [
'user_id',
'amount',
'status',
'createtime2',
'username',
'status_text',
'accumulated',
'fee',
'account',
'bank_name',
'bank_username'
];
}