现在做的类似朋友圈的接口查询
用户表 user 文章表 article 评论表 comment 点赞表 zan 结构如下
class User extand Model {
public function articles() {
return $this->hasMany(Article::class, 'user_id', 'id');
}
}
class Article extand Model {
public function comments() {
return $this->hasMany(Comment::class, 'article_id', 'id');
}
}
class Article extand Model {
public function zans() {
return $this->hasMany(Zan::class, 'article_id', 'id');
}
}
class Comment extand Model {
public function user() {
return $this->belongsTo(User::class, 'user_id', 'id');
}
}
class Zan extand Model {
public function user() {
return $this->belongsTo(User::class, 'user_id', 'id');
}
}
User::with('articles.comments.user')->where('id', 10)->get();
现在需求是根据用户 id 查询所有文章和文章下面的评论和点赞,评论、点赞里显示对应的用户信息。
User::with('articles.comments.user')->find(10);
`
上面只能查出一种,用 morphTo
这种嵌套的没试出来,请问大家有没有高效的方法呢。
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…