LuluFJ.Ho 2 anni fa
parent
commit
840646dffb
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2
    0
      app/Http/Controllers/Api/SeminarSignUpController.php

+ 2
- 0
app/Http/Controllers/Api/SeminarSignUpController.php Vedi File

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
     }