_log_item.php
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* @var OrderLog $model
* @var Order $order
*/
use artweb\artbox\ecommerce\models\Order;
use artweb\artbox\ecommerce\models\OrderLog;
use yii\helpers\Json;
?>
<!-- timeline item -->
<li>
<!-- timeline icon -->
<i class="fa fa-tag bg-blue"></i>
<div class="timeline-item">
<span class="time"><i class="fa fa-calendar"></i> <?= Yii::$app->formatter->asDatetime($model->created_at) ?></span>
<h3 class="timeline-header">Title</h3>
<div class="timeline-body">
<table class="table table-bordered">
<tr>
<th>Поле</th>
<th>с</th>
<th>на</th>
</tr>
<?php
foreach (Json::decode($model->data) as $key => $item) {
?>
<tr>
<td><?=$order->attributeLabels()[$key]?></td>
<td><?=$item['old']?></td>
<td><?=$item['new']?></td>
</tr>
<?php
}
?>
</table>
</div>
</div>
</li>