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