mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-26 14:08:32 +00:00
12 lines
No EOL
503 B
PHP
12 lines
No EOL
503 B
PHP
<nav>
|
|
@foreach ([
|
|
'account.dashboard' => ['title' => 'Dashboard', 'icon' => 'dashboard'],
|
|
'admin.account.index' => ['title' => 'Accounts', 'icon' => 'people'],
|
|
'admin.statistics.show.day' => ['title' => 'Statistics', 'icon' => 'analytics'],
|
|
] as $route => $value)
|
|
<a @if (str_starts_with(url()->current(), route($route)))class="current"@endif href="{{ route($route) }}">
|
|
<i class="material-icons">{{ $value['icon'] }}</i>
|
|
{{ $value['title'] }}
|
|
</a>
|
|
@endforeach
|
|
</nav> |