value Array public static function allKeyValue(): array { return self::query()->pluck('value', 'key')->toArray(); } public static function get(string $key): string { return Setting::where('key', $key)->value('value'); } }