Files
caloriethingy.com/frontend/views/meal/update.php
2025-02-19 14:51:16 +01:00

22 lines
516 B
PHP

<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var common\models\Meal $model */
$this->title = 'Update Meal: ' . $model->id;
$this->params['breadcrumbs'][] = ['label' => 'Meals', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="meal-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>