- // 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');
- }
-
- /**
- * Show the page for application maintenance.
- * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
- */
- public function showMaintenance()
- {
- $this->checkPermission('settings-manage');
- $this->setPageTitle(trans('settings.maint'));