Skip to content
Advertisement

laravel – How can I get the user information of each comment

I have these Models:

JavaScript

What I want is to get the user of each comment something like $post->comments->user in order to get the user information easy like below:

JavaScript

How can I do this? I guess I need something named hasManyThrough but it’s too complex and I got confused 😐

Advertisement

Answer

Yes you can get the user object with comment object, using

JavaScript

and define mapping for user in comments models

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement