First of all define the below relationship in your Comment model.
public function replies()
{
return $this->hasMany(Comment::class, 'parent_id', 'id')->with('replies');
}
After that you can fetch any comment with it's nested replies like this:
Comment::with('replies')->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community