foreach($array as $key=>$value) { // do stuff }
$index = 0; foreach($data as $key=>$val) { // Use $key as an index, or... // ... manage the index this way.. echo "Index is $index\n"; $index++; }
Blog::whereYear('created_at', 2017)->get();