<?php use yii\helpers\Html; /* @var $this yii\web\View *//* @var $model common\models\ars\Order */ $this->title = '创建 Order';$this->params['breadcrumbs'][] = ['label' => 'Orders', 'url' => ['index']];$this->params['breadcrumbs'][] = $this->title;?> <div class="order-create"> <?= $this->render('_form', [ 'model' => $model, ]) ?> </div>
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\ars\Order */
$this->title = '创建 Order';
$this->params['breadcrumbs'][] = ['label' => 'Orders', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="order-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>