laravel collection to array

后端 未结 6 1633
清歌不尽
清歌不尽 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 00:49

    Try collect function in array like:

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

    this methods can help you

    toArray() with collect()

提交回复
热议问题