title = Yii::t('app', 'Category To Purposes'); $this->params['breadcrumbs'][] = $this->title; ?>

title) ?>

'btn btn-success']) ?>

$dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], [ 'attribute' => 'category_id', 'value' => function($model) { /** * @var CategoryToPurpose $model */ return $model->category->lang->name; } ], [ 'attribute' => 'purpose_id', 'value' => function($model) { /** * @var CategoryToPurpose $model */ return $model->purpose->lang->value; } ], [ 'attribute' => 'image', 'value' => 'imageUrl', 'format' => 'image', ], ['class' => 'yii\grid\ActionColumn'], ], ]); ?>