Hi,
This code:
<?php foreach($site->breadcrumb() as $crumb): ?>
<li<?php e($crumb->isActive(), ' aria-current="location"') ?>><a href="<?= $crumb->url() ?>"><?= $crumb->title()->html() ?></a></li>
<?php endforeach; ?>
outputs: Home / Soaps / Green Soap
I want it to output: Soaps / Green Soap How can I accomplish this?