<select class="selectpicker" id="price">
<option value="196">Водительская комиссия(Мужчины)</option>
<option value="197">Водительская комиссия(Женщины)</option>
</select>
<?php
namespace app\modules\admin\models;
use Yii;
/**
* This is the model class for table "price".
*
* @property int $id Номер
* @property int $category_id Номер категории услуги
* @property string $name Наименование услуги
* @property string $unit Единица измерения
* @property string $price Цена в рублях
*
* @property Orders[] $orders
* @property Category $category
*/
class Price extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'price';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['category_id'], 'integer'],
[['name'], 'string', 'max' => 255],
[['unit'], 'string', 'max' => 60],
[['price'], 'string', 'max' => 30],
[['category_id'], 'exist', 'skipOnError' => true, 'targetClass' => Category::className(), 'targetAttribute' => ['category_id' => 'id']],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => '№',
'category_id' => 'Отделение',
'name' => 'Наименование услуги',
'unit' => 'Единица измерения',
'price' => 'Цена',
];
}
/**
* @return \yii\db\ActiveQuery
*/
/* public function getOrders()
{
return $this->hasMany(Orders::className(), ['price_id' => 'id']);
}*/
/**
* @return \yii\db\ActiveQuery
*/
public function getCategory()
{
return $this->hasOne(Category::className(), ['id' => 'category_id']);
}
}
public function rules()
{
return [
[['category_id'], 'integer'],
[['name'], 'string', 'max' => 255],
[['unit'], 'string', 'max' => 60],
[['price'], 'string', 'max' => 30],
[['category_id'], 'exist', 'skipOnError' => true, 'targetClass' => Category::className(), 'targetAttribute' => ['category_id' => 'id']],
];
}
->where(['between', 'date', "2018-01-01", "2019-01-01" ])->all();
@JaredWinter,
Лидером, как нетрудно догадаться – остался Google Chrome. К концу года он завоевал 55,04%. Далее идет огромный разрыв и твёрдое второе место занимает Apple Safari с 14,86% в декабре 2017 года. Третье место у UC Browser – 8,69%. Тройка лидеров не изменилась за год более того, все они немного прибавили в аудитории.
Четвертое место занял Firefox. – 5,72%. В ноябре состоялся релиз одного из самых больших обновлений браузера, за все время его существования. К сожалению, выход Firefox Quantum не помог нарастить аудиторию. Если в октябре аудитория была 6,08%, то к декабрю она не только не смогла существенно увеличиться, но и снизилась до 5,72%.
Далее идет тройка браузеров, которые ожесточено делили полтора процента весь год. К концу 2017-го года Opera заняла 4,03%, у Internet Explorer 3,35% и 2,88% у Samsung Internet. Эта тройка постоянно меняет позиции и в будет интересно пронаблюдать как изменится аудитория данных браузеров в 2018-м году.
<!--[if IE 7]><script>window.location.href = "https://www.google.ru/chrome/browser/desktop/";</script><![endif]-->
<!--[if IE 8]><script>window.location.href = "https://www.google.ru/chrome/browser/desktop/";</script><![endif]-->
<!--[if IE 9]><script>window.location.href = "https://www.google.ru/chrome/browser/desktop/";</script><![endif]-->
<!--[if IE 10]><script>window.location.href = "https://www.google.ru/chrome/browser/desktop/";</script><![endif]-->
<!--[if IE 11]><script>window.location.href = "https://www.google.ru/chrome/browser/desktop/";</script><![endif]-->
<div class="table-responsive">
<table class="table table-hover" style="font-family: 'Exo 2', sans-serif;">
<thead style="color: #0f0f0f" >
<tr class="info">
<th>№ п/п</th>
<th>Наименование платных услуг</th>
<th>Единица измерения</th>
<th>Цена с учетом НДС, руб.</th>
</tr>
</thead>
<tbody>
<?php $i =1; foreach ($gyn as $item) :?>
<tr>
<td><?=$i++;?></td>
<td><?=$item['name']?></td>
<td><?=$item['unit']?></td>
<td><?=$item['price']?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<div class="service-box col-md-12">
<table class="table table-hover table-responsive" style="font-family: 'Exo 2', sans-serif;">
<thead style="color: #0f0f0f" >
<tr class="info">
<th>№ п/п</th>
<th>Наименование платных услуг</th>
<th>Единица измерения</th>
<th>Цена с учетом НДС, руб.</th>
</tr>
</thead>
<tbody>
<?php $i =1; foreach ($gyn as $item) :?>
<tr>
<td><?=$i++;?></td>
<td><?=$item['name']?></td>
<td><?=$item['unit']?></td>
<td><?=$item['price']?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
Но в вёрстке использовалась старая версия BS, и другая версия jQuery. Сейчас попробую убрать yii-шные библиотеки