How can I take all user post comments?
I'm already using morphTo() method between comments and posts/profiles to have all comments i one db table.
I tried to use hasMany('Comment', 'author_id') method but i can't get only post comments with post title, id, slug.
I need to have something like that:
Bla bla bla... | Yesterday, 12:00
Maybe has many through relationships (users comment through posts) can help.
Load all author/s, their posts and the comments on a post $authors = Author::with('posts.comments')->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community