0

I have 3 models.

  1. Post
  2. Comment
  3. Reply

The relation between the model:

  1. Post has many Comment
  2. 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?

Yeasir Arafat
  • 1,425
  • 1
  • 13
  • 28

1 Answers1

2

Use Eager loading to get the nested relationship:

Post::with('comments.replies')->get();
Makdous
  • 1,447
  • 1
  • 12
  • 24