title = Yii::t('app', 'Seo Dynamics for {seo_category}', [ 'seo_category' => $seo_category->lang->name, ]); $this->params[ 'breadcrumbs' ][] = [ 'label' => \Yii::t('app', 'Seo Categories'), 'url' => [ '/seo-category/index' ], ]; $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('app', 'Create Seo Dynamic'), Url::toRoute([ 'create', 'seo_category_id' => $seo_category->seo_category_id, ]), [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'class' => 'yii\grid\SerialColumn' ], 'seo_dynamic_id', [ 'attribute' => 'name', 'value' => 'lang.name', ], 'action', 'fields', 'param', 'status', [ 'class' => 'yii\grid\ActionColumn', 'buttons' => [ 'view' => function($url, $model) { return Html::a('', [ 'view', 'seo_category_id' => $model->seo_category_id, 'id' => $model->seo_dynamic_id, ], [ 'title' => \Yii::t('app', 'Просмотр'), ]); }, 'update' => function($url, $model) { return Html::a('', [ 'update', 'seo_category_id' => $model->seo_category_id, 'id' => $model->seo_dynamic_id, ], [ 'title' => \Yii::t('app', 'Редактировать'), ]); }, 'delete' => function($url, $model) { return Html::a('', Url::toRoute([ 'delete', 'seo_category_id' => $model->seo_category_id, 'id' => $model->seo_dynamic_id, ]), [ 'title' => Yii::t('yii', 'Delete'), 'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'), 'data-method' => 'post', ]); }, ], ], ], ]); ?>