public static function getView($id)
 {
     $view = "";
     $ad_format = AdFormatBaseModel::where("id", "=", $id)->first();
     if ($ad_format) {
         $view = $ad_format->code_view;
     }
     return 'partials.code' . $view;
 }