支持分页类后数据直接each遍历处理,方便修改分页后的数据,而不是只能通过模型的获取器来补充字段。
$list = User::where('status',1)->paginate()->each(function($item, $key){
$item->nickname = 'think';
});
在数据处理中,可以通过use获取外层
$abc = '111';
$list = User::where('status',1)->paginate()->each(function($item, $key) use ($abc){
$item->nickname = $abc;
});
发表评论