diff --git a/resources/views/layouts/email.blade.php b/resources/views/layouts/email.blade.php index 6c9e347..0a24b21 100644 --- a/resources/views/layouts/email.blade.php +++ b/resources/views/layouts/email.blade.php @@ -47,12 +47,6 @@ 'profileName' => $navUser?->name ?? '', 'profileSubtitle' => $navUser?->email ?? '', 'profileMenuItems' => \App\Support\UserProfileMenu::items($navUser), - ['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, 'initials' => $navInitials !== '' ? $navInitials : 'U', ]) diff --git a/resources/views/layouts/hosting.blade.php b/resources/views/layouts/hosting.blade.php index d300308..253e8b3 100644 --- a/resources/views/layouts/hosting.blade.php +++ b/resources/views/layouts/hosting.blade.php @@ -46,12 +46,6 @@ 'profileName' => $navUser?->name ?? '', 'profileSubtitle' => $navUser?->email ?? '', 'profileMenuItems' => \App\Support\UserProfileMenu::items($navUser), - ['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('hosting.dashboard')], - ['type' => 'link', 'label' => 'Billing', 'href' => ladill_account_url('billing')], - ['type' => 'logout', 'label' => 'Logout', 'action' => route('logout')], - ], 'avatarUrl' => $navUser?->avatar_url, 'initials' => $navInitials !== '' ? $navInitials : 'U', ])