<?php
// TruTrak tab navigation
$uri = app_request_path();
$items = [
'/trutrak/map' => 'Map',
];
?>
<div class="header-nav">
<?php foreach ($items as $href => $label):
$active = (strpos($uri, $href) === 0);
?>
<a class="header-nav-item <?= $active ? 'active' : '' ?>" href="<?= e(app_url(ltrim($href, '/'))) ?>"><?= e($label) ?></a>
<?php endforeach; ?>
</div>