laravel collection to array

后端 未结 6 1628
清歌不尽
清歌不尽 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条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-03 01:01

    Use collect($comments_collection).

    Else, try json_encode($comments_collection) to convert to json.

提交回复
热议问题