mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
16 lines
346 B
PHP
Executable File
16 lines
346 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* MENU LOGISTICA
|
|
*/
|
|
if (auth()->user()->inGroup('beta')) {
|
|
?>
|
|
<!-- Logistic -->
|
|
<li class="menu-item">
|
|
<a href="<?= route_to("LogisticaPanel") ?>" class="menu-link">
|
|
<i class="menu-icon tf-icons ti ti-truck"></i>
|
|
<div> <?= lang("App.menu_logistica") ?></div>
|
|
</a>
|
|
|
|
</li>
|
|
<?php } ?>
|