Laravel 中的 Illuminate\Support\Collection
类为处理数据数组提供了一个流畅、方便的包装器。
如果我们需要循环集合并操作集合中的项目,可以使用 map
方法:
//向学生参加的活动中追加一项活动所在学期信息。
$activities = $student->activities->map(function ($activity) {
$activity['semester'] = $activity->semester();
return $activity;
});
(adsbygoogle = window.adsbygoogle || []).push({});
来源:https://www.02405.com/archives/9107