mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-12 23:48:53 +00:00
59 lines
1.0 KiB
PHP
59 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Models;
|
|
|
|
use Auth;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 返利日志
|
|
* Class ReferralLog
|
|
*
|
|
* @package App\Http\Models
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ReferralLog extends Model
|
|
{
|
|
protected $table = 'referral_log';
|
|
protected $primaryKey = 'id';
|
|
|
|
function scopeUid($query)
|
|
{
|
|
return $query->where('ref_user_id', Auth::user()->id);
|
|
}
|
|
|
|
function user()
|
|
{
|
|
return $this->hasOne(User::class, 'id', 'user_id');
|
|
}
|
|
|
|
function ref_user()
|
|
{
|
|
return $this->hasOne(User::class, 'id', 'ref_user_id');
|
|
}
|
|
|
|
function order()
|
|
{
|
|
return $this->hasOne(Order::class, 'oid', 'order_id');
|
|
}
|
|
|
|
function getAmountAttribute($value)
|
|
{
|
|
return $value / 100;
|
|
}
|
|
|
|
function setAmountAttribute($value)
|
|
{
|
|
$this->attributes['amount'] = $value * 100;
|
|
}
|
|
|
|
function getRefAmountAttribute($value)
|
|
{
|
|
return $value / 100;
|
|
}
|
|
|
|
function setRefAmountAttribute($value)
|
|
{
|
|
$this->attributes['ref_amount'] = $value * 100;
|
|
}
|
|
} |