12 lines
643 B
PHP
12 lines
643 B
PHP
<?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?>
|
|
<?= $this->section('content') ?>
|
|
<!-- Layout Middle Start -->
|
|
<div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div>
|
|
<!-- Layout Middle Start -->
|
|
<?php foreach ($viewDatas['dashboards'] as $dashboard): ?>
|
|
<div class="mt-3"><?= $dashboard ?></div>
|
|
<?php endforeach ?>
|
|
<!-- Layout Middle End -->
|
|
<div class=" layout_footer"><?= $this->include("templates/{$viewDatas['layout']}/index_footer"); ?></div>
|
|
<div class="layout_bottom"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/bottom'); ?></div>
|
|
<?= $this->endSection() ?>
|