PHP Classes

File: themes/backend/breadcrumb.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   themes/backend/breadcrumb.php   Download  
File: themes/backend/breadcrumb.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Version update
Date: 19 days ago
Size: 595 bytes
 

Contents

Class file image Download
<nav role="breadcrumb" class="position-fixed w-100 bg-light border-bottom" id="breadcrumb-wrapper">
    <div class="container-fluid">
        <ol class="breadcrumb rounded-0 mb-0">
            <?php foreach ($breadcrumb as $key => $val): ?>
<li class="breadcrumb-item">
                    <a href="<?= $val->url; ?>" class="--xhr">
                        <?= ($val->icon ? '<i class="' . $val->icon . '"></i>' : null); ?>
<?= $val->label; ?>
</a>
                </li>
            <?php endforeach; ?>
</ol>
    </div>
</nav>