render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
//'id',
[
'attribute' => 'forum_thread_id',
'value' => function ($model) {
return $model->forumThread->name;
}
],
'forum_comment',
'comment_by',
'created_at:datetime',
//'updated_at',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>