I have two models, Post and Comment; many comments belong to a single post. I\'m trying to access all comments associated with a post as an array.<
Post
Comment
Use collect($comments_collection).
collect($comments_collection)
Else, try json_encode($comments_collection) to convert to json.
json_encode($comments_collection)