title = Yii::t('product', 'Categories'); $this->params[ 'breadcrumbs' ][] = $this->title; ?>

title) ?>

'btn btn-success' ]) ?>

$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', ], ]); ?>