fitness-web/backend/views/trainer/update.php
2021-09-27 20:40:18 +02:00

22 lines
593 B
PHP

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