title = Yii::t('common/inventory', 'Leltár pillanat képek'); $this->params['breadcrumbs'][] = $this->title; ?>
'POST','class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ 'id_inventory', 'name', // [ 'attribute' => 'id_user', "value" =>"userName" ], 'created_at:datetime', // [ 'attribute' => 'status', "value" =>"statusHuman" ], ['class' => 'yii\grid\ActionColumn', 'template' => '{view}', 'urlCreator' => function( $action, $model, $key, $index ){ if ( $action == 'view' ){ return Url::to(['inventory-item/index' , 'id'=> $model->id_inventory]); } }, 'buttons' =>[ 'view' =>function ($url, $model, $key) { return Html::a('Részletek', $url,['class' => 'btn btn-xs btn-primary', ]) ; } ] ], ], ]); ?>