mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-12 23:48:53 +00:00
1. 修复节点信息获取错误的问题 2. 优化首页公告显示 3. 修复回复工单时按回车导致报错的问题 4. 修改用户编辑与添加排版 5. 修复潜在的IE兼容问题 6. 统一Table元素格式 7. 优化返利界面 8. 添加了封禁时间倒计时 9. 对非付费用户,首页添加提示购买宣传语
42 lines
731 B
PHP
42 lines
731 B
PHP
<?php
|
|
|
|
namespace App\Http\Models;
|
|
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 用户流量变动记录
|
|
* Class UserTrafficModifyLog
|
|
*
|
|
* @package App\Http\Models
|
|
* @mixin Eloquent
|
|
*/
|
|
class UserTrafficModifyLog extends Model
|
|
{
|
|
protected $table = 'user_traffic_modify_log';
|
|
protected $primaryKey = 'id';
|
|
|
|
// 关联账号
|
|
function user()
|
|
{
|
|
return $this->hasOne(User::class, 'id', 'user_id');
|
|
}
|
|
|
|
// 关联订单
|
|
function order()
|
|
{
|
|
return $this->hasOne(Order::class, 'oid', 'order_id');
|
|
}
|
|
|
|
function getBeforeAttribute($value)
|
|
{
|
|
return $this->attributes['before'] = flowAutoShow($value);
|
|
}
|
|
|
|
function getAfterAttribute($value)
|
|
{
|
|
return $this->attributes['after'] = flowAutoShow($value);
|
|
}
|
|
|
|
} |