Explorar el Código

Merge branch 'dev' into pre

LuluFJ.Ho hace 3 años
padre
commit
5fe03d57be
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      app/Http/Controllers/Api/SeminarSignUpController.php

+ 2
- 0
app/Http/Controllers/Api/SeminarSignUpController.php Ver fichero

22
     // save data to db
22
     // save data to db
23
     public function insertData(StoreRequest $request)
23
     public function insertData(StoreRequest $request)
24
     {
24
     {
25
+        dd(123);
25
         $name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
26
         $name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
26
         $email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
27
         $email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
27
         $mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');
28
         $mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');
51
         $data = [
52
         $data = [
52
             'list' => $Data
53
             'list' => $Data
53
         ];
54
         ];
55
+        dd(123);
54
         
56
         
55
         return $this->apiResponse($data);
57
         return $this->apiResponse($data);
56
     }
58
     }