Fix FLEXIAPI-467 Move the button in the dashboard

This commit is contained in:
Timothée Jaussoin 2026-03-30 16:26:17 +02:00
parent 294eb340a4
commit ab635702fe
2 changed files with 9 additions and 12 deletions

View file

@ -7,6 +7,15 @@
<div class="card">
<h3><i class="ph ph-hand-waving"></i> {{ __('Welcome on :app_name' , ['app_name' => space()->name]) }} </h3>
<p>
<i class="ph ph-phone"></i>
{{ __('Telephony') }}
<a href="{{ route('account.telephony') }}">
{{ __('Edit') }}
</a>
</p>
<p>
<i class="ph ph-envelope"></i>
@if (!empty($account->email))

View file

@ -14,16 +14,4 @@
$items['admin.api_keys.index'] = ['title' => __('Settings'), 'icon' => 'gear'];
}
@endphp
@include('parts.sidebar_items', ['items' => $items])
@if (auth()->user())
<hr />
@php
$items = [];
$items['account.telephony'] = ['title' => __('Telephony'), 'icon' => 'phone'];
@endphp
@include('parts.sidebar_items', ['items' => $items])
@endif
</nav>