title = Yii::t('common/product', 'Products'); $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/product', 'Create Product'), ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ [ 'attribute' => 'name', ], [ 'attribute' => 'id_product_category', 'value' => 'productCategoryName', ], [ 'attribute' => 'id_account', 'value' => 'accountName', ], 'product_number', 'barcode', 'sale_price', [ 'attribute' => 'status', 'value' => 'statusHuman', ], ['class' => 'yii\grid\ActionColumn', 'template' => '{view} {update}' ], ], ]); ?>