16 lines
453 B
PHTML
16 lines
453 B
PHTML
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<span>Properties</span>
|
|
</div>
|
|
<div class="panel-body">
|
|
<table class="table table-bordered">
|
|
<?php foreach ($this->monitoringProperties($object) as $label => $value): ?>
|
|
<tr>
|
|
<th><?= $label ?></th>
|
|
<td><?= $value ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|