mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
13 lines
No EOL
264 B
PHP
13 lines
No EOL
264 B
PHP
@php
|
|
$items = [
|
|
route('admin.api_keys.index') => __('API Keys')
|
|
];
|
|
|
|
if (auth()->user()->superAdmin) {
|
|
$items[route('admin.phone_countries.index')] = __('Phone Countries');
|
|
}
|
|
@endphp
|
|
|
|
@include('parts.tabs', [
|
|
'items' => $items
|
|
]) |