If I use $post->comments()->save($comment) to add a new comment to a post, why does $post->comments not automatically get updated to include that new post? I only see the post in $post->comments if I either re-load $post from the database, or if I call $post->load('comments').
Shouldn't the save() function automatically update $post->comments? Am I doing something wrong, or is this the way it is supposed to work?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community