mirror of
https://github.com/Karaka-Management/oms-Knowledgebase.git
synced 2026-01-26 00:08:41 +00:00
14 lines
297 B
PHP
14 lines
297 B
PHP
<?php
|
|
$categories = $this->getData('categories');
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<?php foreach($categories as $category) : ?>
|
|
<section class="box wf-100">
|
|
<?= $category->getName(); ?>
|
|
</section>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|