| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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 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;
- }
- }
|