支持分頁類后數據直接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;
});
發表評論