Fix hosting profile dropdown and align menu with platform.
Deploy Ladill Hosting / deploy (push) Successful in 29s

Add home.ladill.com helper, repair click-outside handling on topbar menus, and expand profile links on desktop and mobile.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-18 20:40:43 +00:00
co-authored by Cursor
parent 05466b6868
commit 5e4109384e
4 changed files with 31 additions and 10 deletions
+5 -2
View File
@@ -47,8 +47,11 @@
'profileName' => $navUser?->name ?? '',
'profileSubtitle' => $navUser?->email ?? '',
'profileMenuItems' => [
['type' => 'link', 'label' => 'Profile', 'href' => $navAcct.'/profile'],
['type' => 'link', 'label' => 'Account Settings', 'href' => $navAcct.'/account-settings'],
['type' => 'link', 'label' => 'Home', 'href' => ladill_home_url()],
['type' => 'link', 'label' => 'Profile', 'href' => ladill_account_url('profile')],
['type' => 'link', 'label' => 'Account Settings', 'href' => ladill_account_url('account-settings')],
['type' => 'link', 'label' => 'Dashboard', 'href' => route('email.dashboard')],
['type' => 'link', 'label' => 'Billing', 'href' => ladill_account_url('billing')],
['type' => 'logout', 'label' => 'Logout', 'action' => route('logout')],
],
'avatarUrl' => $navUser?->avatar_url,