php foreach associative array index code example
Example 1: php foreach associative array
$arr = array(
'key1' => 'val1',
'key2' => 'val2',
'key3' => 'val3'
);
foreach ($arr as $key => $val) {
echo "$key => $val" . PHP_EOL;
}
Example 2: php foreach index
Blog::whereYear('created_at', 2017)->get();