php – laravel eloquent嵌套评论和回复

几天前,我看到一个网站,用户可以在帖子上发表评论.其他用户可以回复此问题.并且重播可以有回复,如下面的示例屏幕截图..

enter image description here

所以我想试一试,但不知何故无法弄明白.
这是我的数据库设置

Schema::create('comments', function (Blueprint $table) {
            $table->increments('id');
            $table->unsignedInteger('user_id');
            $table->unsignedInteger('post_id');
            $table->unsignedInteger('reply_id')->default(0);
            $table->text('body');
            $table->timestamps();
        });

模型中的关系

class Comment extends Model
{
    protected $fillable = [
        'user_id',
        'post_id',
        'reply_id',
        'body'
    ];

    public function user()
    {
        return $this->belongsTo(User::class);
    }

    public function post()
    {
        return $this->belongsTo(Post::class);
    }

    public function replies()
    {
        return $this->hasMany(Comment::class,'reply_id','id');
    }

在控制器中

$comments = Comment::with('replies')->where('reply_id','=',0)->get(['id','reply_id','body']);
   return response($comments);

这完美地回复评论回复.但如果有回复回复,它就不会显示出来.我怎样才能做到这一点?需要建议.

解决方法:

使用nullable()parent_id交换reply_id.所以基本上你想知道评论是否有父母.

然后在Comment模型中,添加一个自我关系以获取其parent_id匹配的所有注释.

public function replies() {
    return $this->hasMany('App\Comment', 'parent_id');
}

在您的视图中,您可以为每个注释及其回复创建嵌套循环

@foreach($comments as $comment) 
   {{ $comment->content }}

   @if ( $comment->replies )
       @foreach($comment->replies as $rep1)
           {{ $rep1->content }}
           ...
       @endforeach
   @endif
@endforeach

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...