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