summaryrefslogtreecommitdiff
path: root/public/app/views/components/subcategories.php
blob: 5c05a943ca123f2d16819d3dd4c8ce7db6947f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- Sub-Categories -->

<?php if ($breadcrumbs[ $id ]['childs'] != []) : ?>

    <h5>Υποκεφάλαια</h5>
    
    <div class="category-childs">

    <?php foreach($breadcrumbs[ $id ]['childs'] as $key => $child) : ?>
        
        <a href="/course/<?=$child['id']?>" class="btn btn-light">
            <?=$child['label']?>
        </a>

    <?php endforeach; ?>

    </div>

<?php endif; ?>