public function save($input)
 {
     foreach ($input as $key => $val) {
         $meta_old = ['name' => $key];
         $meta_new = ['name' => $key, 'value' => $val];
         $config = Configuration::updateOrCreate($meta_old, $meta_new);
     }
     # WONT EXPECTING ANY ERRORS
     return true;
 }