@php // Get theme color from database $themeSetup = \DB::table('settings')->where('type', 'theme-setup')->where('key', 'theme-setup')->first(); $themeData = $themeSetup ? json_decode($themeSetup->value, true) : null; $primaryColorFromDB = $themeData['primary_color'] ?? null; @endphp