mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-02-06 21:39:50 +00:00
7 lines
241 B
PHP
7 lines
241 B
PHP
@if (!empty($items))
|
|
<ul class="tabs">
|
|
@foreach ($items as $route => $title)
|
|
<li @if (url()->current() == $route)class="current"@endif><a href="{{ $route }}">{{ $title }}</a></li>
|
|
@endforeach
|
|
</ul>
|
|
@endif
|