new balance

This commit is contained in:
2019-06-25 12:37:09 +03:00
parent a783be26d1
commit 2f4f92bdec
16 changed files with 523 additions and 58 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace backend\widgets;
use yii\base\Widget;
class SummRangeWidget extends Widget
{
public $model;
public $range_attribute;
public function run()
{
return $this->render('summ_range', ['model' => $this->model]);
}
}