whereRefUserId(Auth::id()); } public function user(): HasOne { return $this->hasOne(User::class, 'id', 'user_id'); } public function ref_user(): HasOne { return $this->hasOne(User::class, 'id', 'ref_user_id'); } public function order(): HasOne { return $this->hasOne(Order::class, 'oid', 'order_id'); } public function getAmountAttribute($value) { return $value / 100; } public function setAmountAttribute($value): void { $this->attributes['amount'] = $value * 100; } public function getRefAmountAttribute($value) { return $value / 100; } public function setRefAmountAttribute($value): void { $this->attributes['ref_amount'] = $value * 100; } }