Skip to content

Instantly share code, notes, and snippets.

@nsanden
Created May 15, 2014 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsanden/34ea84ef16eb9d5b74e0 to your computer and use it in GitHub Desktop.
Save nsanden/34ea84ef16eb9d5b74e0 to your computer and use it in GitHub Desktop.
<?= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'label' => 'title',
'format' => 'html',
'value' => function () { return Html::a($owner->model->title, 'site/index'); }
],
'pay',
// 'updated',
'created',
],
]); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment