我正在我的軟件中開發(fā)一個推薦系統(tǒng)。我已經(jīng)獲得了正確的推薦,但我想列出所有推薦某人的用戶以及他們在管理端推薦的人數(shù)。這是我的用戶模型public function referrals(){ return $this->hasMany(Referral::class, 'user_id', 'id');}public function referrer(){ return $this->hasOne(Referral::class, 'referred_by', 'id');}注意:referred_by是推薦某人的人,user_id 是被推薦的人這是我的推薦模型protected $fillable = ['user_id', 'referred_by', 'status'];public function user(){ return $this->belongsTo(User::class);}這是我的推薦遷移Schema::create('referrals', function (Blueprint $table) { $table->id(); $table->integer('user_id')->unsigned()->references('id')->on('users'); $table->integer('referred_by')->unsigned()->references('id')->on('users'); $table->string('status')->nullable(); $table->timestamps(); });
我想返回一個用戶,其中包含他們推薦的所有人員的列表
慕田峪7331174
2023-07-30 13:32:30