flexisip-account-manager/flexiapi/resources/views/parts/tabs.blade.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