LuluFJ.Ho il y a 2 ans
Parent
révision
840646dffb
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2
    0
      app/Http/Controllers/Api/SeminarSignUpController.php

+ 2
- 0
app/Http/Controllers/Api/SeminarSignUpController.php Voir le fichier

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