foreach($products as $product) {
echo Html::a('link',['product/view', 'id' => $product->id],['class'='class1']);
}
?>
'attributes' => [
'email:email',
'attribute'=>'email', // можно использовать без модели, например добавить 'label'
'format'=>'raw',
'value'=>function($model) {
echo Html::a('Это емаил'.$model->email, '#');
}
'address:text',
'phone',
'personnelAsString',
]