flexisip-account-manager/flexiapi/resources/views/parts/sidebar.blade.php
Timothée Jaussoin fc96338bfb Redesign the UI
2023-06-09 08:24:49 +00:00

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>