You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
512 B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model backend\modules\goods\models\ars\Supplier */
  5. $this->title = '编辑供应商: ' . $model->name;
  6. $this->params['breadcrumbs'][] = ['label' => '供应商管理', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
  8. $this->params['breadcrumbs'][] = '编辑 ';
  9. ?>
  10. <div class="supplier-update">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>