我有image
模型的搜索结果,$photo
保存了$photo->type == 'photo'
的数据。
$photo = $image->filter(function($photo,$key) use($path){
if($photo->type == 'photo'){
$photo->url = $path.$photo->image;
return $photo;
}
});
以下是$photo
集合,有array_values()
items
数据的任何方式吗?
Collection {#352 ▼
#items: array:3 [▼
2 => ImageBanquet {#349 ▶}
3 => ImageBanquet {#350 ▶}
4 => ImageBanquet {#351 ▶}
]
}