54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use HasFactory, Notifiable;
|
|
|
|
protected $fillable = [
|
|
'merchant_id', 'name', 'email', 'phone', 'password', 'status',
|
|
'register_source', 'last_login_source', 'wechat_openid', 'wechat_unionid', 'mini_openid',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
];
|
|
}
|
|
|
|
public function merchant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Merchant::class, 'merchant_id');
|
|
}
|
|
|
|
public function orders(): HasMany
|
|
{
|
|
return $this->hasMany(Order::class);
|
|
}
|
|
|
|
public function oauthAccounts(): HasMany
|
|
{
|
|
return $this->hasMany(OauthAccount::class);
|
|
}
|
|
|
|
public function scopeForMerchant(Builder $query, int $merchantId): Builder
|
|
{
|
|
return $query->where('merchant_id', $merchantId);
|
|
}
|
|
}
|