欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

中间表父子关系 自己亲自做的 有大用

//一个长辈有多个孩子 //金牌用户下面有 银牌用户 铜牌用户 普通用户

    public function childrens(){
        return $this->belongsToMany('App\User','user_relation_level','parent_user_id','user_id')->withPivot('level')->withTimestamps();
    }
    //一个人有多个长辈  父亲爷爷 普通用户 上面 有铜牌用户 银牌用户  金牌用户
    public function parents()
    {
        return $this->belongsToMany('App\User','user_relation_level','user_id','parent_user_id')->withPivot('level')->withTimestamps();;
    }
普通分类: