多态关联问题,评论功能实现

现有两个模型文章(Post)评论(Comment),模型定义如下

  1. Post

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use YuanChao\Editor\EndaEditor;

class Post extends Model
{
    protected $fillable = ['user_id', 'title', 'content'];

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

    public function comments()
    {
        return $this->morphMany(Comment::class, 'commentable')->orderBy('created_at', 'desc');
    }
}
  1. Comment

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use YuanChao\Editor\EndaEditor;

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

    /**
     * Get all of the owning commentable models.
     */
    public function commentable()
    {
        return $this->morphTo();
    }

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

    /**
     * 子集评论
     *
     * @return \Illuminate\Database\Eloquent\Relations\MorphMany
     */
    public function comments()
    {
        return $this->morphMany(self::class, 'commentable')->orderBy('created_at', 'desc');
    }
}

如上所示一篇文章可以有多个评论,每个评论又可以有多个子评论,我遇到的问题是在模板渲染时可以通过“渴求势加载”方式在模板页嵌套循环输出评论。但是我现在要使用VUE把评论做成一个模块,需要请求得到评论的tree型结构,这个有什么好的处理方式吗

GOD_Nt
修改的评论也不能少于六个字哦!
746019546 回复 GOD_Nt
修改的评论也不能少于六个字哦!
GOD_Nt 回复 746019546
修改的评论也不能少于六个字哦!
foxriver123 回复 GOD_Nt
修改的评论也不能少于六个字哦!
siwei1
修改的评论也不能少于六个字哦!