title = Yii::t('order', 'Orders'); $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('order', 'Create Order'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget( [ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'class' => 'yii\grid\SerialColumn' ], 'id', 'user_id', 'name', [ 'attribute' => 'secondname', 'format' => 'text', 'label' => 'Фамилия', ], 'phone', 'email:email', [ 'attribute' => 'label_id', 'value' => 'label.lang.title', 'filter' => $labels, ], 'created_at:datetime', 'ip', [ 'attribute' => 'count', 'value' => function ($model) { /** * @var \artbox\order\models\Order $model */ return count($model->orderProducts); }, ], [ 'class' => 'yii\grid\ActionColumn' ], ], ] ); ?>