title = Yii::t('product', 'Categories'); $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('product', 'Create Category'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'class' => 'yii\grid\SerialColumn' ], 'category_id', [ 'attribute' => 'category_name', 'content' => function($data) { /** * @var Category $data */ $op = []; foreach($data->getParents()->with('lang') ->all() as $parent) { $op[] = $parent->lang->name; } $op[] = $data->lang->name; return implode(' → ', $op); }, ], 'imageUrl:image', [ 'class' => 'yii\grid\ActionColumn', ], ], 'panel' => [ 'type' => 'success', ], ]); ?>