mirror of
https://github.com/Karaka-Management/oms-Dashboard.git
synced 2026-01-11 01:28:39 +00:00
9 lines
256 B
PHP
Executable File
9 lines
256 B
PHP
Executable File
<div class="row">
|
|
<?php
|
|
$panels = $this->data['panels'];
|
|
if (empty($panels)) : ?>
|
|
<div class="emptyPage"></div>
|
|
<?php else: foreach ($panels as $panel) : ?>
|
|
<?= $panel->render(); ?>
|
|
<?php endforeach; endif; ?>
|
|
</div>
|