belongsTo(User::class, 'user_id', 'id'); } /** * 目标用户信息 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function target(){ return $this->belongsTo(User::class, 'target_id', 'id'); } }