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; ?>