protected function enableTheme($siteId, $theme)
 {
     $c = \Veer\Models\Configuration::firstOrCreate(["conf_key" => "TEMPLATE", "sites_id" => $siteId]);
     $c->conf_val = $theme;
     $c->theme = $theme;
     $c->save();
 }