title = 'Прайс ' . Html::encode( "{$importer} от {$date}" );
$this->params['breadcrumbs'][] = $this->title;
?>
    
= Html::encode($this->title) ?>
    = GridView::widget( ['dataProvider' => $dataProvider,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],
            'FULL_ARTICLE',
            'ARTICLE',
            'BRAND',
            'DESCR',
            'BOX',
            'ADD_BOX',
            'GROUP',
            'name',
            ['attribute' => 'PRICE',
                'value' => function($data) {
                    return \Yii::$app->formatter->asDecimal($data->PRICE);
                }
            ],
        ],
        ] );
 ?>