I have 3 models.
- Post
- Comment
- Reply
The relation between the model:
- Post has many Comment
- Comment has many Reply
I want to get all the replies of all the comments of a single post. Is there any query to get all the replies of a post?
I have 3 models.
The relation between the model:
I want to get all the replies of all the comments of a single post. Is there any query to get all the replies of a post?
Use Eager loading to get the nested relationship:
Post::with('comments.replies')->get();