- // Cycles through posted settings and update them
- foreach($request->all() as $name => $value) {
- if(strpos($name, 'setting-') !== 0) continue;
- $key = str_replace('setting-', '', trim($name));
- if($key == 'app-color') {
- Setting::put('app-color-rgba', $this->hex2rgba($value, 0.15));
- }
- Setting::put($key, $value);
- }