@php $mobileUser = auth('mobile')->user(); $unreadNewsNotificationCount = $mobileUser ? $mobileUser->unreadNotifications()->where('type', \Modules\Mobile\Notifications\NewsLetterPublishedNotification::class)->count() : 0; $items = [ [ 'route' => 'm.dashboard', 'label' => 'Home', 'icon' => '', 'disabled' => false, ], [ 'route' => 'm.newsletters', 'label' => 'News', 'icon' => '', 'disabled' => false, 'badge' => $unreadNewsNotificationCount, ], [ 'route' => null, 'url' => 'https://linktr.ee/LicentiaFranchiseSa', 'label' => 'Social', 'icon_image' => asset('images/icons/Link Icon - LinkTree (Black).png'), 'disabled' => false, ], [ 'route' => 'm.todos', 'label' => 'Todo', 'icon' => '', 'disabled' => false, ], [ 'route' => 'm.profile', 'label' => 'Profile', 'icon' => '', 'disabled' => false, ], ]; @endphp