Logo white

Yarik / artbox-ecommerce

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-ecommerce
  • views
  • order
  • update.php
  • -Product card fixed
    6f14188b
    Alexey Boroda authored
    2016-11-21 17:23:00 +0200  
    Browse Code »
update.php 473 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
    /**
     * @var Order $model
     * @var View  $this
     */
    
    use artweb\artbox\ecommerce\models\Order;
    use yii\helpers\Html;
    use yii\web\View;
    
    $this->title = 'Заказ №' . $model->id;
    $this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="order-update">
    <h1><?php echo Html::encode($this->title) ?></h1>
    
    <?= $this->render(
        '_form',
        [
            'model' => $model,
        ]
    ) ?>
</div>