title = 'Meals'; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a('Create Meal', ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], 'id', 'file_name', 'calories', 'protein', 'fat', //'carbohydrates', //'fiber', //'meal', //'created_at', //'updated_at', [ 'class' => ActionColumn::className(), 'urlCreator' => function ($action, Meal $model, $key, $index, $column) { return Url::toRoute([$action, 'id' => $model->id]); } ], ], ]); ?>