| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace App\Http\Models;
- use Illuminate\Notifications\Notifiable;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- /**
- * 用户信息
- * Class User
- *
- * @package App\Http\Models
- * @property mixed $balance
- * @property-read \Illuminate\Database\Eloquent\Collection|\App\Http\Models\UserLabel[] $label
- * @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
- * @property-read \Illuminate\Database\Eloquent\Collection|\App\Http\Models\Payment[] $payment
- * @property-read \App\Http\Models\User $referral
- * @mixin \Eloquent
- */
- class User extends Authenticatable
- {
- use Notifiable;
- protected $table = 'user';
- protected $primaryKey = 'id';
- function levelList()
- {
- return $this->hasOne(Level::class, 'level', 'level');
- }
- function payment()
- {
- return $this->hasMany(Payment::class, 'user_id', 'id');
- }
- function label()
- {
- return $this->hasMany(UserLabel::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 getBalanceAttribute($value)
- {
- return $value / 100;
- }
- function setBalanceAttribute($value)
- {
- return $this->attributes['balance'] = $value * 100;
- }
- }
|