guild/backend/modules/balance/views/balance/create.php
2019-12-10 17:22:20 +03:00

19 lines
423 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\company\models\Balance */
$this->title = 'Добавить баланс';
$this->params['breadcrumbs'][] = ['label' => 'Список балансов', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="balance-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>