Exemplo n.º 1
0
 public static function read($opt)
 {
     $c = Conf::where('name', '=', $opt)->first();
     return $c->value;
 }
 private function saveConf($request, $name)
 {
     $conf = Conf::where('name', '=', $name)->firstOrFail();
     $conf->value = $request->input($name);
     $conf->save();
 }