'json']; public static function get(string $key): mixed { return self::find($key)?->value; } /** * Set a setting (no pun) value. * * @param array|string $key the key of the setting, or an associative array of settings, * in which case $value will be discarded */ public static function set(array|string $key, $value = ''): void { if (is_array($key)) { foreach ($key as $k => $v) { self::set($k, $v); } return; } self::query()->updateOrCreate(compact('key'), compact('value')); } }