whereId(Auth::id()); } function payment() { return $this->hasMany(Payment::class, 'user_id', 'id'); } function subscribe() { return $this->hasOne(UserSubscribe::class, 'user_id', 'id'); } function referral() { return $this->hasOne(User::class, 'id', 'referral_uid'); } function getCreditAttribute($value) { return $value / 100; } function setCreditAttribute($value) { return $this->attributes['credit'] = $value * 100; } }