@extends('admin.settings.layout') @php use App\Models\Setting; $debug_mode = true; // Check actual database values for debugging $dbPrimary = Setting::where('key', 'primary_color')->first()?->value; $dbSecondary = Setting::where('key', 'secondary_color')->first()?->value; @endphp @section('settings_content')
{{ $dbPrimary }} | secondary_color = {{ $dbSecondary }}