📅  最后修改于: 2022-03-11 14:54:13.550000             🧑  作者: Mango
//If you are working with a collection you can do something like this:
foreach($collection as $item) {
if($collection->last() == $item) {
// last iteration
}
}
//If you are working with an array (it also works with collections) you can do this:
foreach($array as $item) {
if(end($array) == $item) {
// last iteration
}
}