mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
14 lines
381 B
PHP
14 lines
381 B
PHP
<?php
|
|
/**
|
|
* MENU MENSAJES
|
|
*/
|
|
if (auth()->user()->inGroup('beta') || auth()->user()->inGroup('cliente-editor')) {
|
|
?>
|
|
<!-- Messages -->
|
|
<li class="menu-item">
|
|
<a href="<?= route_to('mensajeriaView') ?>" class="menu-link">
|
|
<i class="menu-icon tf-icons ti ti-message"></i>
|
|
<?= lang("App.menu_mensajes") ?>
|
|
</a>
|
|
</li>
|
|
<?php } ?>
|