LuluFJ.Ho 2 vuotta sitten
vanhempi
commit
00468dc594

+ 0
- 1
app/Exceptions/Handler.php Näytä tiedosto

@@ -57,7 +57,6 @@ class Handler extends ExceptionHandler
57 57
 
58 58
     public function handleApiException(Throwable $exception)
59 59
     { 
60
-        dd($exception);
61 60
         // Route Not Found 404
62 61
         if ($exception instanceof RouteNotFoundException) {
63 62
             return $this->apiExceptionResponse($exception, Response::HTTP_NOT_FOUND, config('response-message.router_failed'));

+ 0
- 1
app/Http/Controllers/Api/SeminarSignUpController.php Näytä tiedosto

@@ -22,7 +22,6 @@ class SeminarSignUpController extends ApiController
22 22
     // save data to db
23 23
     public function insertData(StoreRequest $request)
24 24
     {
25
-        dd(123);
26 25
         $name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
27 26
         $email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
28 27
         $mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');