Explorar el Código

20221013 重新存取 utm 參數

LuluFJ.Ho hace 2 años
padre
commit
4ab4fcfbaa
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      app/Http/Services/Api/SeminarSignUpService.php

+ 2
- 2
app/Http/Services/Api/SeminarSignUpService.php Ver fichero

@@ -153,7 +153,8 @@ class SeminarSignUpService
153 153
 
154 154
     public function updateUTMData($id, $data) 
155 155
     {
156
-        
156
+        Log::info(print_r($data, true));
157
+        return;
157 158
         $res = $this->signupDb
158 159
             ->where('id', $id)
159 160
             ->update([
@@ -164,7 +165,6 @@ class SeminarSignUpService
164 165
                 'utm_campaign' => $data[4],
165 166
             ]);
166 167
         
167
-        return $res;
168 168
     }
169 169
 
170 170
 }