|
|
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */ /* @var $model common\models\ars\Order */
$this->title = '编辑 Order: ' . $model->id; $this->params['breadcrumbs'][] = ['label' => 'Orders', 'url' => ['index']]; $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]]; $this->params['breadcrumbs'][] = 'Update '; ?>
<div class="order-update">
<?= $this->render('_form', [ 'model' => $model, ]) ?>
</div>
|