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
Try this:
$comments_collection = $post->comments()->get()->toArray();
see this can help you toArray() method in Collections