{{-- --}} @if (Request::is('master-panel/projects/kanban-view')) @endif @if (Request::is('master-panel/projects/mind-map/*')) @endif {{-- --}} @php $theme_color = '#000000'; // default color if (isset($pwa_settings) && isset($pwa_settings['pwa_theme_color'])) { $theme_color = $pwa_settings['pwa_theme_color']; } $full_logo = 'storage/logos/default_favicon.png'; // default logo if (isset($general_settings) && isset($general_settings['full_logo'])) { $full_logo = $general_settings['full_logo']; } @endphp
@if(config('constants.ALLOW_MODIFICATION') == '0') @endif @if (Request::is('forgot-password') || Request::is('login') || Request::segment(1) == 'reset-password' || Request::is('install') || Request::is('privacy-policy') || Request::is('terms-and-condition') || Request::is('refund-policy') || Request::is('register')) @yield('content') @include('labels') @else @php $manage_notifications = auth()->check() && auth()->user()->can('manage_system_notifications') ? 'true' : 'false'; @endphp @endif @php $modules = get_subscriptionModules(); $hasChatModule = in_array('chat', $modules); $user = getAuthenticatedUser(); @endphp @if ($user && !$user->hasRole('superadmin') && !$user->hasRole('manager')) @if (Auth::guard('web')->check() && $hasChatModule)