- $this->preventAccessForDemoUsers();
- $this->checkPermission('settings-manage');
-
- // 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));
- Setting::put($key, $value);
- }
-
- session()->flash('success', trans('settings.settings_save_success'));
- return redirect('/settings');