拉拉维尔收集到阵列
我有两个模型,和;许多评论属于一个帖子。我正在尝试以数组形式访问与帖子关联的所有评论。Post
Comment
我有以下内容,它提供了一个集合。
$comments_collection = $post->comments()->get()
如何将其转换为数组?有没有一种更直接的方法通过雄辩的关系来访问这个数组?$comments_collection
我有两个模型,和;许多评论属于一个帖子。我正在尝试以数组形式访问与帖子关联的所有评论。Post
Comment
我有以下内容,它提供了一个集合。
$comments_collection = $post->comments()->get()
如何将其转换为数组?有没有一种更直接的方法通过雄辩的关系来访问这个数组?$comments_collection
使用方法 - 它旨在返回“收藏”的项目:all()
/**
* Get all of the items in the collection.
*
* @return array
*/
public function all()
{
return $this->items;
}