Symfony Exception

Error

HTTP 500 Internal Server Error

Class "MetzWeb\Instagram\Instagram" not found

Exception

Error

  1. } else {
  2.     $template_file module_templates($config['module'], 'default');
  3. }
  4. $instagram = new \MetzWeb\Instagram\Instagram(array(
  5.     'apiKey'      => $instagram_api_client,
  6.     'apiSecret'   => $instagram_api_secret,
  7.     'apiCallback' => 'http://localhost/droptienda_ll/'
  8. ));
  1.                     $res = include $item;
  2.                 }
  3.             }
  4.         } elseif (is_string($this->v)) {
  5.             if (is_file($this->v)) {
  6.                 $res = include $this->v;
  7.             }
  8.         }
  9.         if (isset($res) and is_object($res)) {
  10.             if ($res instanceof RedirectResponse) {
  1.                 } elseif (isset($attrs['format']) && (trim($attrs['format']) == 'json')) {
  2.                     $module_file $l1->__get_vars();
  3.                     header('Content-type: application/json');
  4.                     exit(json_encode($module_file));
  5.                 } else {
  6.                     $module_file $l1->__toString();
  7.                 }
  8.             }
  9.             //    $l1 = null;
  10.             unset($l1);
  11.             if ($lic != false and isset($lic['error']) and ($lic['error'] == 'no_license_found')) {
  1.         $mod_id_value 'load'.crc32($module_name json_encode($attrs));
  2.         $that $this;
  3.         if (isset($that->module_load_registry[$mod_id_value])) {
  4.             return $that->module_load_registry[$mod_id_value];
  5.         }
  6.         $that->module_load_registry[$mod_id_value] = $that->load_module_callback($module_name$attrs);
  7.         return $that->module_load_registry[$mod_id_value];
  8.     }
  9.     private function load_module_callback($module_name$attrs = array())
  1.                                     }
  2.                                     $this->_current_parser_module_of_type[$par_id_mod_count][$module_name]++;
  3.                                     $mod_content $this->load($module_name$attrs);
  4.                                     if($this->current_module and isset($this->current_module['settings'] ) and isset($this->current_module['settings']['html_tag']) and $this->current_module['settings']['html_tag']){
  5.                                         $module_html_tag $this->current_module['settings']['html_tag'];
  6.                                     }
  1.                                         }
  2.                                         //  $mod_content2 = $mod_content;
  3.                                         $proceed_with_parse $this->_do_we_have_more_for_parse($mod_content);
  4.                                         if ($proceed_with_parse == true) {
  5.                                             $mod_content $this->process($mod_content$options$coming_from_parentz$coming_from_parent_strz1$previous_attrs2);
  6.                                         }
  7.                                         if (strpos($mod_content'<inner-edit-tag>mw_saved_inner_edit_from_parent_edit_field</inner-edit-tag>') !== false) {
  1.                 }
  2.             }
  3.             $modify_content event_trigger('on_load'$content);
  4.             $l $this->app->parser->process($l$options false,false,false,false);
  5.             if ($preview_module_id != false) {
  6.                 $_REQUEST['embed_id'] = $preview_module_id;
  7.             }
  8.             if (isset($_REQUEST['embed_id'])) {
  1.             $get_url_d DB::table('content')->select('id')->where('url' ,'='$segment)->where('is_active','=',0)->pluck('id')->first();
  2.             if($get_url_d and !is_admin()){
  3.                 return redirect('/');
  4.             }
  5.         }
  6.         return $this->frontend();
  7.     }
  8.     public function rss()
  9.     {
  10.         if (mw_is_installed()) {
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $request->hasSession() || ! $request->user()) {
  6.             return $next($request);
  7.         }
  8.         if ($this->guard()->viaRemember()) {
  9.             $passwordHash explode('|'$request->cookies->get($this->guard()->getRecallerName()))[2] ?? null;
  1.          if (!mw_is_installed()) {
  2.             return $next($request);
  3.         }
  4.         return parent::handle($request,$next);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 $input Security::create()->clean($input);
  2.             }
  3.         });
  4.         $request->merge($input);
  5.         return $next($request);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             // 'Access-Control-Allow-Headers' => 'Content-Type, X-Auth-Token, Origin, Authorization',
  2.         ];
  3.         if ($request->getMethod() == "OPTIONS") {
  4.             return response()->json('OK'200$headers);
  5.         }
  6.         $response $next($request);
  7.         foreach ($headers as $key => $value) {
  8.             if (method_exists($response'header')) {
  9.                 $response->header($key$value);
  10.             }
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.      * @param  \Closure $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return parent::handle($request$next); // defer to the right stuff
  7.     }
  8.     /**
  9.      * Store the current URL for the request if necessary.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1. */
  2. $kernel $app->make('Illuminate\Contracts\Http\Kernel');
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

Error
Error:
Class "MetzWeb\Instagram\Instagram" not found

  at /var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/userfiles/modules/instagram_feed/index.php:38
  at include()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/View/View.php:78)
  at MicroweberPackages\View\View->__toString()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Utils/Parser.php:2358)
  at MicroweberPackages\App\Utils\Parser->load_module_callback()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Utils/Parser.php:1998)
  at MicroweberPackages\App\Utils\Parser->load()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Utils/Parser.php:914)
  at MicroweberPackages\App\Utils\Parser->process()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Utils/Parser.php:986)
  at MicroweberPackages\App\Utils\Parser->process()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Controllers/FrontendController.php:2181)
  at MicroweberPackages\App\Http\Controllers\FrontendController->frontend()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Controllers/FrontendController.php:85)
  at MicroweberPackages\App\Http\Controllers\FrontendController->index()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
  at Illuminate\Routing\Controller->callAction()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
  at Illuminate\Routing\ControllerDispatcher->dispatch()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
  at Illuminate\Routing\Route->runController()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
  at Illuminate\Routing\Route->run()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Router.php:806)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php:41)
  at Illuminate\Session\Middleware\AuthenticateSession->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Middleware/AuthenticateSessionForUser.php:23)
  at MicroweberPackages\App\Http\Middleware\AuthenticateSessionForUser->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Middleware/XSS.php:22)
  at MicroweberPackages\App\Http\Middleware\XSS->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Router.php:807)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
  at Illuminate\Routing\Router->runRoute()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
  at Illuminate\Routing\Router->dispatch()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Middleware/Cors.php:31)
  at MicroweberPackages\App\Http\Middleware\Cors->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/luminouslabs/ll-laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/src/MicroweberPackages/App/Http/Middleware/StartSessionExtended.php:22)
  at MicroweberPackages\App\Http\Middleware\StartSessionExtended->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/e4dcc1c3-ab67-44f6-a169-e5e23e9c4443/index.php:87)