yii2 gridview row color code example
Example: yii2 gridview row color
'rowOptions' => function($model, $key, $index, $column){
if($index % 2 == 0){
return ['class' => 'info'];
}
},
'rowOptions' => function($model, $key, $index, $column){
if($index % 2 == 0){
return ['class' => 'info'];
}
},