laravel collection to array

后端 未结 6 1647
清歌不尽
清歌不尽 2020-12-03 00:38

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.<

6条回答
  •  萌比男神i
    2020-12-03 01:03

    Try this:

    $comments_collection = $post->comments()->get()->toArray();
    

    see this can help you
    toArray() method in Collections

提交回复
热议问题