@php $notificationService = new App\Services\AppNotificationService(); $systemSettings = App\Models\SystemSetting::whereIn('key', ['topbar_background_color', 'topbar_text_color'])->get(); $bg_color = $systemSettings->where('key', 'topbar_background_color')->first()->value ?? '#dfe2cd' ; $text_color = ($systemSettings->where('key', 'topbar_text_color')->first()->value ?? '#478FCA') . ' !important'; $totalNotification = $notificationService->totalNotificationCount; @endphp