laravel collection to array

后端 未结 6 1634
清歌不尽
清歌不尽 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

    you can do something like this

    $collection = collect(['name' => 'Desk', 'price' => 200]);
    $collection->toArray();
    

    Reference is https://laravel.com/docs/5.1/collections#method-toarray

    Originally from Laracasts website https://laracasts.com/discuss/channels/laravel/how-to-convert-this-collection-to-an-array

提交回复
热议问题