Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.     {
  2.         return function ($passable) use ($destination) {
  3.             try {
  4.                 return $destination($passable);
  5.             } catch (Throwable $e) {
  6.                 return $this->handleException($passable$e);
  7.             }
  8.         };
  9.     }
  10.     /**
  1.     {
  2.         $this->router->substituteBindings($route $request->route());
  3.         $this->router->substituteImplicitBindings($route);
  4.         return $next($request);
  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.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  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.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  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.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: Trying to get property \'main_menu_id\' of non-object in file /home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php on line 207#0 /home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php(207): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(8, \'Trying to get p...\', \'/home/u51172578...\', 207, Array)#1 /home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php(23): App\\Http\\Controllers\\Front\\Content\\ContentController->mainMenuId(\'notification\')#2 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\\Http\\Controllers\\Front\\Content\\ContentController->getBySubMenu(Object(Illuminate\\Http\\Request), \'notification\', \'MjU2\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(45): Illuminate\\Routing\\Controller->callAction(\'getBySubMenu\', Array)#4 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php(239): Illuminate\\Routing\\ControllerDispatcher->dispatch(Object(Illuminate\\Routing\\Route), Object(App\\Http\\Controllers\\Front\\Content\\ContentController), \'getBySubMenu\')#5 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php(196): Illuminate\\Routing\\Route->runController()#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(685): Illuminate\\Routing\\Route->run()#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#11 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle(Object(Illuminate\\Http\\Request), Object(Closure))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(116): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(62): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode->handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure))#40 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#41 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))#42 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#43 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request))#44 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 Trying to get property \'main_menu_id\' of non-object', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619736, 'message' => 'Trying to get property \'main_menu_id\' of non-object', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 207, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('                            ->facebook()', '                            ->whatsapp()', '                            ->twitter();', '', '', '        return view("front.Components.service_detail",$data);', '    }', '', '', '    public function mainMenuId($url)', '    {', '        $main = DB::table(\'tbl_main_menu\')', '                    ->where(\'main_menu_status\',0)', '                    ->where(\'main_menu_name\',str_replace(\'_\',\' \',$url))', '                    ->first();', '        return $main->main_menu_id;', '    }', '    public function subMenu($url,$mainId)', '    {', '        $sub = DB::table(\'tbl_sub_menu\')', '                    ->where(\'sub_menu_name\',str_replace(\'_\',\' \',$url))', '                    ->where(\'sub_menu_menuid\',$mainId)', '                    ->where(\'sub_menu_status\',0)', '                    ->first();', '        return $sub;', '    }', '    public function getThirdSubMenus($mainId,$subId)', '    {', '        $menus = DB::table(\'tbl_3rdsubmenu\')', '                    ->where(\'sub_sub_status\',0)', '                    ->where(\'sub_sub_mainid\',$mainId)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php', 'is_application_frame' => true), array('line_number' => 207, 'method' => 'mainMenuId', 'class' => 'App\\Http\\Controllers\\Front\\Content\\ContentController', 'code_snippet' => array('                            ->facebook()', '                            ->whatsapp()', '                            ->twitter();', '', '', '        return view("front.Components.service_detail",$data);', '    }', '', '', '    public function mainMenuId($url)', '    {', '        $main = DB::table(\'tbl_main_menu\')', '                    ->where(\'main_menu_status\',0)', '                    ->where(\'main_menu_name\',str_replace(\'_\',\' \',$url))', '                    ->first();', '        return $main->main_menu_id;', '    }', '    public function subMenu($url,$mainId)', '    {', '        $sub = DB::table(\'tbl_sub_menu\')', '                    ->where(\'sub_menu_name\',str_replace(\'_\',\' \',$url))', '                    ->where(\'sub_menu_menuid\',$mainId)', '                    ->where(\'sub_menu_status\',0)', '                    ->first();', '        return $sub;', '    }', '    public function getThirdSubMenus($mainId,$subId)', '    {', '        $menus = DB::table(\'tbl_3rdsubmenu\')', '                    ->where(\'sub_sub_status\',0)', '                    ->where(\'sub_sub_mainid\',$mainId)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php', 'is_application_frame' => true), array('line_number' => 23, 'method' => 'getBySubMenu', 'class' => 'App\\Http\\Controllers\\Front\\Content\\ContentController', 'code_snippet' => array('use Illuminate\\Support\\Facades\\Validator;', 'use App\\Http\\Controllers\\Core;', 'use DB;', 'Use Str;', 'use Mail;', 'use Share;', 'class ContentController extends Controller', '{', '    public function getByMainMenu()', '    {', '', '    }', '    public function getBySubMenu(Request $request)', '    {', '        $url = request()->segment(count(request()->segments()) - 1);', '        $mainId = $this->mainMenuId($url);', '', '        $urlLast = request()->segment(count(request()->segments()));', '        $sub = $this->subMenu($urlLast,$mainId);', '        $subId = $sub->sub_menu_id;', '        $MenuName = $sub->sub_menu_name;', '        $banner = $sub->sub_menu_banner;', '        $thirdMenus = $this->getThirdSubMenus($mainId,$subId);', '        $third = $this->thirdMenu($mainId,$subId,$request->menu);', '', '        if($request->ajax())', '        {', '            if(count($thirdMenus) == 0){', '                $data = DB::table(\'tbl_contents\')', '                        ->select(\'content_id as id\',\'content_title as title\',\'content_desc as description\',\'content_img as image\')', '                        ->where(\'content_status\',0)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Http/Controllers/Front/Content/ContentController.php', 'is_application_frame' => true), array('line_number' => 54, 'method' => 'callAction', 'class' => 'Illuminate\\Routing\\Controller', 'code_snippet' => array('     */', '    public function getMiddleware()', '    {', '        return $this->middleware;', '    }', '', '    /**', '     * Execute an action on the controller.', '     *', '     * @param  string  $method', '     * @param  array  $parameters', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function callAction($method, $parameters)', '    {', '        return $this->{$method}(...array_values($parameters));', '    }', '', '    /**', '     * Handle calls to missing methods on the controller.', '     *', '     * @param  string  $method', '     * @param  array  $parameters', '     * @return mixed', '     *', '     * @throws \\BadMethodCallException', '     */', '    public function __call($method, $parameters)', '    {', '        throw new BadMethodCallException(sprintf(', '            \'Method %s::%s does not exist.\', static::class, $method'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php', 'is_application_frame' => false), array('line_number' => 45, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\ControllerDispatcher', 'code_snippet' => array('    /**', '     * Dispatch a request to a given controller and method.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  mixed  $controller', '     * @param  string  $method', '     * @return mixed', '     */', '    public function dispatch(Route $route, $controller, $method)', '    {', '        $parameters = $this->resolveClassMethodDependencies(', '            $route->parametersWithoutNulls(), $controller, $method', '        );', '', '        if (method_exists($controller, \'callAction\')) {', '            return $controller->callAction($method, $parameters);', '        }', '', '        return $controller->{$method}(...array_values($parameters));', '    }', '', '    /**', '     * Get the middleware for the controller instance.', '     *', '     * @param  \\Illuminate\\Routing\\Controller  $controller', '     * @param  string  $method', '     * @return array', '     */', '    public function getMiddleware($controller, $method)', '    {', '        if (! method_exists($controller, \'getMiddleware\')) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php', 'is_application_frame' => false), array('line_number' => 239, 'method' => 'runController', 'class' => 'Illuminate\\Routing\\Route', 'code_snippet' => array('        return $callable(...array_values($this->resolveMethodDependencies(', '            $this->parametersWithoutNulls(), new ReflectionFunction($this->action[\'uses\'])', '        )));', '    }', '', '    /**', '     * Run the route action and return the response.', '     *', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException', '     */', '    protected function runController()', '    {', '        return $this->controllerDispatcher()->dispatch(', '            $this, $this->getController(), $this->getControllerMethod()', '        );', '    }', '', '    /**', '     * Get the controller instance for the route.', '     *', '     * @return mixed', '     */', '    public function getController()', '    {', '        if (! $this->controller) {', '            $class = $this->parseControllerCallback()[0];', '', '            $this->controller = $this->container->make(ltrim($class, \'\\\\\'));', '        }'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php', 'is_application_frame' => false), array('line_number' => 196, 'method' => 'run', 'class' => 'Illuminate\\Routing\\Route', 'code_snippet' => array('    {', '        return RouteAction::parse($this->uri, $action);', '    }', '', '    /**', '     * Run the route action and return the response.', '     *', '     * @return mixed', '     */', '    public function run()', '    {', '        $this->container = $this->container ?: new Container;', '', '        try {', '            if ($this->isControllerAction()) {', '                return $this->runController();', '            }', '', '            return $this->runCallable();', '        } catch (HttpResponseException $e) {', '            return $e->getResponse();', '        }', '    }', '', '    /**', '     * Checks whether the route\'s action is a controller.', '     *', '     * @return bool', '     */', '    protected function isControllerAction()', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php', 'is_application_frame' => false), array('line_number' => 685, 'method' => 'Illuminate\\Routing\\{closure}', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 41, 'method' => 'handle', 'class' => 'Illuminate\\Routing\\Middleware\\SubstituteBindings', 'code_snippet' => array('     */', '    protected $router;', '', '    /**', '     * Create a new bindings substitutor.', '     *', '     * @param  \\Illuminate\\Contracts\\Routing\\Registrar  $router', '     * @return void', '     */', '    public function __construct(Registrar $router)', '    {', '        $this->router = $router;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->router->substituteBindings($route = $request->route());', '', '        $this->router->substituteImplicitBindings($route);', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 78, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Session\\TokenMismatchException', '     */', '    public function handle($request, Closure $next)', '    {', '        if (', '            $this->isReading($request) ||', '            $this->runningUnitTests() ||', '            $this->inExceptArray($request) ||', '            $this->tokensMatch($request)', '        ) {', '            return tap($next($request), function ($response) use ($request) {', '                if ($this->shouldAddXsrfTokenCookie()) {', '                    $this->addCookieToResponse($request, $response);', '                }', '            });', '        }', '', '        throw new TokenMismatchException(\'CSRF token mismatch.\');', '    }', '', '    /**', '     * Determine if the HTTP request uses a ‘read’ verb.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 49, 'method' => 'handle', 'class' => 'Illuminate\\View\\Middleware\\ShareErrorsFromSession', 'code_snippet' => array('     * @return void', '     */', '    public function __construct(ViewFactory $view)', '    {', '        $this->view = $view;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        // If the current session has an "errors" variable bound to it, we will share', '        // its value with all view instances so the views can easily access errors', '        // without having to bind. An empty bag is set when there aren\'t errors.', '        $this->view->share(', '            \'errors\', $request->session()->get(\'errors\') ?: new ViewErrorBag', '        );', '', '        // Putting the errors in the view for every view allows the developer to just', '        // assume that some errors are always available, which is convenient since', '        // they don\'t have to continually run checks for the presence of errors.', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 116, 'method' => 'handleStatefulRequest', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleStatefulRequest(Request $request, $session, Closure $next)', '    {', '        // If a session driver has been configured, we will need to start the session here', '        // so that the data is ready for an application. Note that the Laravel sessions', '        // do not make use of PHP "native" sessions in any way since they are crappy.', '        $request->setLaravelSession(', '            $this->startSession($request, $session)', '        );', '', '        $this->collectGarbage($session);', '', '        $response = $next($request);', '', '        $this->storeCurrentUrl($request, $session);', '', '        $this->addCookieToResponse($response, $session);', '', '        // Again, if the session has been configured we will need to close out the session', '        // so that the attributes may be persisted to some storage medium. We will also', '        // add the session identifier cookie to the application response headers now.', '        $this->saveSession($request);', '', '        return $response;', '    }', '', '    /**', '     * Start the session for the given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'handle', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        if (! $this->sessionConfigured()) {', '            return $next($request);', '        }', '', '        $session = $this->getSession($request);', '', '        if ($this->manager->shouldBlock() ||', '            ($request->route() && $request->route()->locksFor())) {', '            return $this->handleRequestWhileBlocking($request, $session, $next);', '        } else {', '            return $this->handleStatefulRequest($request, $session, $next);', '        }', '    }', '', '    /**', '     * Handle the given request within session state.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)', '    {', '        $lockFor = $request->route() && $request->route()->locksFor()', '                        ? $request->route()->locksFor()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:130)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  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.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  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.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(41): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Routing\\Middleware\\SubstituteBindings-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(116): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(62): Illuminate\\Session\\Middleware\\StartSession-&gt;handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#40 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#41 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#42 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#43 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#44 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#45 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#46 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#47 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#48 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#49 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#50 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 130, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {', '                try {', '                    if (is_callable($pipe)) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 41, 'method' => 'handle', 'class' => 'Illuminate\\Routing\\Middleware\\SubstituteBindings', 'code_snippet' => array('     */', '    protected $router;', '', '    /**', '     * Create a new bindings substitutor.', '     *', '     * @param  \\Illuminate\\Contracts\\Routing\\Registrar  $router', '     * @return void', '     */', '    public function __construct(Registrar $router)', '    {', '        $this->router = $router;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->router->substituteBindings($route = $request->route());', '', '        $this->router->substituteImplicitBindings($route);', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 78, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Session\\TokenMismatchException', '     */', '    public function handle($request, Closure $next)', '    {', '        if (', '            $this->isReading($request) ||', '            $this->runningUnitTests() ||', '            $this->inExceptArray($request) ||', '            $this->tokensMatch($request)', '        ) {', '            return tap($next($request), function ($response) use ($request) {', '                if ($this->shouldAddXsrfTokenCookie()) {', '                    $this->addCookieToResponse($request, $response);', '                }', '            });', '        }', '', '        throw new TokenMismatchException(\'CSRF token mismatch.\');', '    }', '', '    /**', '     * Determine if the HTTP request uses a ‘read’ verb.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 49, 'method' => 'handle', 'class' => 'Illuminate\\View\\Middleware\\ShareErrorsFromSession', 'code_snippet' => array('     * @return void', '     */', '    public function __construct(ViewFactory $view)', '    {', '        $this->view = $view;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        // If the current session has an "errors" variable bound to it, we will share', '        // its value with all view instances so the views can easily access errors', '        // without having to bind. An empty bag is set when there aren\'t errors.', '        $this->view->share(', '            \'errors\', $request->session()->get(\'errors\') ?: new ViewErrorBag', '        );', '', '        // Putting the errors in the view for every view allows the developer to just', '        // assume that some errors are always available, which is convenient since', '        // they don\'t have to continually run checks for the presence of errors.', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 116, 'method' => 'handleStatefulRequest', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleStatefulRequest(Request $request, $session, Closure $next)', '    {', '        // If a session driver has been configured, we will need to start the session here', '        // so that the data is ready for an application. Note that the Laravel sessions', '        // do not make use of PHP "native" sessions in any way since they are crappy.', '        $request->setLaravelSession(', '            $this->startSession($request, $session)', '        );', '', '        $this->collectGarbage($session);', '', '        $response = $next($request);', '', '        $this->storeCurrentUrl($request, $session);', '', '        $this->addCookieToResponse($response, $session);', '', '        // Again, if the session has been configured we will need to close out the session', '        // so that the attributes may be persisted to some storage medium. We will also', '        // add the session identifier cookie to the application response headers now.', '        $this->saveSession($request);', '', '        return $response;', '    }', '', '    /**', '     * Start the session for the given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'handle', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        if (! $this->sessionConfigured()) {', '            return $next($request);', '        }', '', '        $session = $this->getSession($request);', '', '        if ($this->manager->shouldBlock() ||', '            ($request->route() && $request->route()->locksFor())) {', '            return $this->handleRequestWhileBlocking($request, $session, $next);', '        } else {', '            return $this->handleStatefulRequest($request, $session, $next);', '        }', '    }', '', '    /**', '     * Handle the given request within session state.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)', '    {', '        $lockFor = $request->route() && $request->route()->locksFor()', '                        ? $request->route()->locksFor()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  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.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(116): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(62): Illuminate\\Session\\Middleware\\StartSession-&gt;handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#40 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#41 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#42 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#43 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#44 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#45 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#46 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#47 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#48 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 78, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Session\\TokenMismatchException', '     */', '    public function handle($request, Closure $next)', '    {', '        if (', '            $this->isReading($request) ||', '            $this->runningUnitTests() ||', '            $this->inExceptArray($request) ||', '            $this->tokensMatch($request)', '        ) {', '            return tap($next($request), function ($response) use ($request) {', '                if ($this->shouldAddXsrfTokenCookie()) {', '                    $this->addCookieToResponse($request, $response);', '                }', '            });', '        }', '', '        throw new TokenMismatchException(\'CSRF token mismatch.\');', '    }', '', '    /**', '     * Determine if the HTTP request uses a ‘read’ verb.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 49, 'method' => 'handle', 'class' => 'Illuminate\\View\\Middleware\\ShareErrorsFromSession', 'code_snippet' => array('     * @return void', '     */', '    public function __construct(ViewFactory $view)', '    {', '        $this->view = $view;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        // If the current session has an "errors" variable bound to it, we will share', '        // its value with all view instances so the views can easily access errors', '        // without having to bind. An empty bag is set when there aren\'t errors.', '        $this->view->share(', '            \'errors\', $request->session()->get(\'errors\') ?: new ViewErrorBag', '        );', '', '        // Putting the errors in the view for every view allows the developer to just', '        // assume that some errors are always available, which is convenient since', '        // they don\'t have to continually run checks for the presence of errors.', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 116, 'method' => 'handleStatefulRequest', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleStatefulRequest(Request $request, $session, Closure $next)', '    {', '        // If a session driver has been configured, we will need to start the session here', '        // so that the data is ready for an application. Note that the Laravel sessions', '        // do not make use of PHP "native" sessions in any way since they are crappy.', '        $request->setLaravelSession(', '            $this->startSession($request, $session)', '        );', '', '        $this->collectGarbage($session);', '', '        $response = $next($request);', '', '        $this->storeCurrentUrl($request, $session);', '', '        $this->addCookieToResponse($response, $session);', '', '        // Again, if the session has been configured we will need to close out the session', '        // so that the attributes may be persisted to some storage medium. We will also', '        // add the session identifier cookie to the application response headers now.', '        $this->saveSession($request);', '', '        return $response;', '    }', '', '    /**', '     * Start the session for the given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'handle', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        if (! $this->sessionConfigured()) {', '            return $next($request);', '        }', '', '        $session = $this->getSession($request);', '', '        if ($this->manager->shouldBlock() ||', '            ($request->route() && $request->route()->locksFor())) {', '            return $this->handleRequestWhileBlocking($request, $session, $next);', '        } else {', '            return $this->handleStatefulRequest($request, $session, $next);', '        }', '    }', '', '    /**', '     * Handle the given request within session state.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)', '    {', '        $lockFor = $request->route() && $request->route()->locksFor()', '                        ? $request->route()->locksFor()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\View\\Middleware\\ShareErrorsFromSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(116): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(62): Illuminate\\Session\\Middleware\\StartSession-&gt;handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#40 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#41 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#42 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#43 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#44 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#45 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#46 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 49, 'method' => 'handle', 'class' => 'Illuminate\\View\\Middleware\\ShareErrorsFromSession', 'code_snippet' => array('     * @return void', '     */', '    public function __construct(ViewFactory $view)', '    {', '        $this->view = $view;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        // If the current session has an "errors" variable bound to it, we will share', '        // its value with all view instances so the views can easily access errors', '        // without having to bind. An empty bag is set when there aren\'t errors.', '        $this->view->share(', '            \'errors\', $request->session()->get(\'errors\') ?: new ViewErrorBag', '        );', '', '        // Putting the errors in the view for every view allows the developer to just', '        // assume that some errors are always available, which is convenient since', '        // they don\'t have to continually run checks for the presence of errors.', '', '        return $next($request);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 116, 'method' => 'handleStatefulRequest', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleStatefulRequest(Request $request, $session, Closure $next)', '    {', '        // If a session driver has been configured, we will need to start the session here', '        // so that the data is ready for an application. Note that the Laravel sessions', '        // do not make use of PHP "native" sessions in any way since they are crappy.', '        $request->setLaravelSession(', '            $this->startSession($request, $session)', '        );', '', '        $this->collectGarbage($session);', '', '        $response = $next($request);', '', '        $this->storeCurrentUrl($request, $session);', '', '        $this->addCookieToResponse($response, $session);', '', '        // Again, if the session has been configured we will need to close out the session', '        // so that the attributes may be persisted to some storage medium. We will also', '        // add the session identifier cookie to the application response headers now.', '        $this->saveSession($request);', '', '        return $response;', '    }', '', '    /**', '     * Start the session for the given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'handle', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        if (! $this->sessionConfigured()) {', '            return $next($request);', '        }', '', '        $session = $this->getSession($request);', '', '        if ($this->manager->shouldBlock() ||', '            ($request->route() && $request->route()->locksFor())) {', '            return $this->handleRequestWhileBlocking($request, $session, $next);', '        } else {', '            return $this->handleStatefulRequest($request, $session, $next);', '        }', '    }', '', '    /**', '     * Handle the given request within session state.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)', '    {', '        $lockFor = $request->route() && $request->route()->locksFor()', '                        ? $request->route()->locksFor()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(116): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(62): Illuminate\\Session\\Middleware\\StartSession-&gt;handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Session\\Middleware\\StartSession-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#40 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#41 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#42 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#43 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#44 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 116, 'method' => 'handleStatefulRequest', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleStatefulRequest(Request $request, $session, Closure $next)', '    {', '        // If a session driver has been configured, we will need to start the session here', '        // so that the data is ready for an application. Note that the Laravel sessions', '        // do not make use of PHP "native" sessions in any way since they are crappy.', '        $request->setLaravelSession(', '            $this->startSession($request, $session)', '        );', '', '        $this->collectGarbage($session);', '', '        $response = $next($request);', '', '        $this->storeCurrentUrl($request, $session);', '', '        $this->addCookieToResponse($response, $session);', '', '        // Again, if the session has been configured we will need to close out the session', '        // so that the attributes may be persisted to some storage medium. We will also', '        // add the session identifier cookie to the application response headers now.', '        $this->saveSession($request);', '', '        return $response;', '    }', '', '    /**', '     * Start the session for the given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'handle', 'class' => 'Illuminate\\Session\\Middleware\\StartSession', 'code_snippet' => array('     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        if (! $this->sessionConfigured()) {', '            return $next($request);', '        }', '', '        $session = $this->getSession($request);', '', '        if ($this->manager->shouldBlock() ||', '            ($request->route() && $request->route()->locksFor())) {', '            return $this->handleRequestWhileBlocking($request, $session, $next);', '        } else {', '            return $this->handleStatefulRequest($request, $session, $next);', '        }', '    }', '', '    /**', '     * Handle the given request within session state.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Contracts\\Session\\Session  $session', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)', '    {', '        $lockFor = $request->route() && $request->route()->locksFor()', '                        ? $request->route()->locksFor()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  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.         $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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#31 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#33 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#35 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#36 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#38 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#39 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#40 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#41 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse', 'code_snippet' => array('', '    /**', '     * Create a new CookieQueue instance.', '     *', '     * @param  \\Illuminate\\Contracts\\Cookie\\QueueingFactory  $cookies', '     * @return void', '     */', '    public function __construct(CookieJar $cookies)', '    {', '        $this->cookies = $cookies;', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        foreach ($this->cookies->getQueuedCookies() as $cookie) {', '            $response->headers->setCookie($cookie);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  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.      */
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Cookie\\Middleware\\EncryptCookies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#29 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#31 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#33 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#36 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#37 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#38 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#39 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 67, 'method' => 'handle', 'class' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', 'code_snippet' => array('     */', '    public function disableFor($name)', '    {', '        $this->except = array_merge($this->except, (array) $name);', '    }', '', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function handle($request, Closure $next)', '    {', '        return $this->encrypt($next($this->decrypt($request)));', '    }', '', '    /**', '     * Decrypt the cookies on the request.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Request', '     */', '    protected function decrypt(Request $request)', '    {', '        foreach ($request->cookies as $key => $cookie) {', '            if ($this->isDisabled($key)) {', '                continue;', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.     {
  2.         return function ($passable) use ($destination) {
  3.             try {
  4.                 return $destination($passable);
  5.             } catch (Throwable $e) {
  6.                 return $this->handleException($passable$e);
  7.             }
  8.         };
  9.     }
  10.     /**
  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.                         // 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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(662): Illuminate\\Routing\\Router-&gt;runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(628): Illuminate\\Routing\\Router-&gt;runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(617): Illuminate\\Routing\\Router-&gt;dispatchToRoute(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\\Routing\\Router-&gt;dispatch(Object(Illuminate\\Http\\Request))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Foundation\\Http\\Kernel-&gt;Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#29 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#30 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#31 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#32 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#33 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#34 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#35 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#36 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#37 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 687, 'method' => 'runRouteWithinStack', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', '', '        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);', '', '        return (new Pipeline($this->container))', '                        ->send($request)', '                        ->through($middleware)', '                        ->then(function ($request) use ($route) {', '                            return $this->prepareResponse(', '                                $request, $route->run()', '                            );', '                        });', '    }', '', '    /**', '     * Gather the middleware for the given route with resolved class names.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return array', '     */', '    public function gatherRouteMiddleware(Route $route)', '    {', '        $excluded = collect($route->excludedMiddleware())->map(function ($name) {', '            return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);', '        })->flatten()->values()->all();', '', '        $middleware = collect($route->gatherMiddleware())->map(function ($name) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 662, 'method' => 'runRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     * Return the response for the given route.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function runRoute(Request $request, Route $route)', '    {', '        $request->setRouteResolver(function () use ($route) {', '            return $route;', '        });', '', '        $this->events->dispatch(new RouteMatched($route, $request));', '', '        return $this->prepareResponse($request,', '            $this->runRouteWithinStack($route, $request)', '        );', '    }', '', '    /**', '     * Run the given route within a Stack "onion" instance.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return mixed', '     */', '    protected function runRouteWithinStack(Route $route, Request $request)', '    {', '        $shouldSkipMiddleware = $this->container->bound(\'middleware.disable\') &&', '                                $this->container->make(\'middleware.disable\') === true;', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 628, 'method' => 'dispatchToRoute', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Routing\\Route', '     */', '    protected function findRoute($request)', '    {', '        $this->current = $route = $this->routes->match($request);', '', '        $this->container->instance(Route::class, $route);', '', '        return $route;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 617, 'method' => 'dispatch', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);', '', '        return $this->runRoute($this->currentRequest, $route);', '    }', '', '    /**', '     * Dispatch the request to the application.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatch(Request $request)', '    {', '        $this->currentRequest = $request;', '', '        return $this->dispatchToRoute($request);', '    }', '', '    /**', '     * Dispatch the request to a route and return the response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function dispatchToRoute(Request $request)', '    {', '        return $this->runRoute($request, $this->findRoute($request));', '    }', '', '    /**', '     * Find the route matching a given request.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 165, 'method' => 'Illuminate\\Foundation\\Http\\{closure}', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**', '     * Get the route dispatcher callback.', '     *', '     * @return \\Closure', '     */', '    protected function dispatchToRouter()', '    {', '        return function ($request) {', '            $this->app->instance(\'request\', $request);', '', '            return $this->router->dispatch($request);', '        };', '    }', '', '    /**', '     * Call the terminate method on any terminable middleware.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Illuminate\\Http\\Response  $response', '     * @return void', '     */', '    public function terminate($request, $response)', '    {', '        $this->terminateMiddleware($request, $response);', '', '        $this->app->terminate();'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 128, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:130)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.                         // 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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#22 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#24 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#27 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#28 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#29 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#30 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 130, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {', '                try {', '                    if (is_callable($pipe)) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#22 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#25 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#26 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#27 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#28 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  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.         // 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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#24 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#25 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#26 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php(63): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#22 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#23 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#24 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 63, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode', 'code_snippet' => array('    {', '        if ($this->app->isDownForMaintenance()) {', '            $data = json_decode(file_get_contents($this->app->storagePath().\'/framework/down\'), true);', '', '            if (isset($data[\'allowed\']) && IpUtils::checkIp($request->ip(), (array) $data[\'allowed\'])) {', '                return $next($request);', '            }', '', '            if ($this->inExceptArray($request)) {', '                return $next($request);', '            }', '', '            throw new MaintenanceModeException($data[\'time\'], $data[\'retry\'], $data[\'message\']);', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the request has a URI that should be accessible in maintenance mode.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return bool', '     */', '    protected function inExceptArray($request)', '    {', '        foreach ($this->except as $except) {', '            if ($except !== \'/\') {', '                $except = trim($except, \'/\');', '            }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#20 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#21 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#22 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  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.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fideloper\\Proxy\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#18 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#19 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#20 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'handle', 'class' => 'Fideloper\\Proxy\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     * @param \\Closure                 $next', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     *', '     * @return mixed', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request to the value of trustedproxy.proxies', '     *', '     * @param \\Illuminate\\Http\\Request $request', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies ?: $this->config->get(\'trustedproxy.proxies\');', '', '        // Trust any IP address that calls us', '        // `**` for backwards compatibility, but is deprecated', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/fideloper/proxy/src/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.      * @param  \Throwable  $e
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     protected function renderException($requestThrowable $e)
  5.     {
  6.         return $this->app[ExceptionHandler::class]->render($request$e);
  7.     }
  8.     /**
  9.      * Get the application's route middleware groups.
  10.      *
  1.             $response $this->sendRequestThroughRouter($request);
  2.         } catch (Throwable $e) {
  3.             $this->reportException($e);
  4.             $response $this->renderException($request$e);
  5.         }
  6.         $this->app['events']->dispatch(
  7.             new RequestHandled($request$response)
  8.         );
Kernel->handle(object(Request)) in /home/u511725780/domains/cigi.org/public_html/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#15 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#16 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#17 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#18 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 140, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 109, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:415)
  at Illuminate\Foundation\Http\Kernel->renderException(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:113)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/u511725780/domains/cigi.org/public_html/index.php:55)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(ErrorException)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function renderHttpResponse(Throwable $e)
  5.     {
  6.         $this->getExceptionHandler()->render($this->app['request'], $e)->send();
  7.     }
  8.     /**
  9.      * Handle the PHP shutdown event.
  10.      *
  1.         }
  2.         if ($this->app->runningInConsole()) {
  3.             $this->renderForConsole($e);
  4.         } else {
  5.             $this->renderHttpResponse($e);
  6.         }
  7.     }
  8.     /**
  9.      * Render an exception to the console.
HandleExceptions->handleException(object(ErrorException))

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(392): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(346): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(327): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(306): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(211): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(415): App\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(113): Illuminate\\Foundation\\Http\\Kernel-&gt;renderException(Object(Illuminate\\Http\\Request), Object(ErrorException))#14 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#15 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711619737, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 355, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 392, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 346, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 327, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 306, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            \'message\' => $exception->getMessage(),', '            \'errors\' => $exception->errors(),', '        ], $exception->status);', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 211, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return $e->toResponse($request);', '        }', '', '        $e = $this->prepareException($e);', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $request->expectsJson()', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Prepare exception for rendering.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function prepareException(Throwable $e)', '    {', '        if ($e instanceof ModelNotFoundException) {', '            $e = new NotFoundHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof AuthorizationException) {', '            $e = new AccessDeniedHttpException($e->getMessage(), $e);', '        } elseif ($e instanceof TokenMismatchException) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 53, 'method' => 'render', 'class' => 'App\\Exceptions\\Handler', 'code_snippet' => array('        \'password_confirmation\',', '    ];', '', '    /**', '     * Report or log an exception.', '     *', '     * @param  \\Throwable  $exception', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    public function report(Throwable $exception)', '    {', '        parent::report($exception);', '    }', '', '    /**', '     * Render an exception into an HTTP response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $exception', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     *', '     * @throws \\Throwable', '     */', '    public function render($request, Throwable $exception)', '    {', '        return parent::render($request, $exception);', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php', 'is_application_frame' => true), array('line_number' => 415, 'method' => 'renderException', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     */', '    protected function reportException(Throwable $e)', '    {', '        $this->app[ExceptionHandler::class]->report($e);', '    }', '', '    /**', '     * Render the exception to a response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderException($request, Throwable $e)', '    {', '        return $this->app[ExceptionHandler::class]->render($request, $e);', '    }', '', '    /**', '     * Get the application\'s route middleware groups.', '     *', '     * @return array', '     */', '    public function getMiddlewareGroups()', '    {', '        return $this->middlewareGroups;', '    }', '', '    /**', '     * Get the application\'s route middleware.', '     *'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 113, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => '[top]', 'class' => null, 'code_snippet' => array('| We need to illuminate PHP development, so let us turn on the lights.', '| This bootstraps the framework and gets it ready for use, then it', '| will load up this application so that we can run it and send', '| the responses back to the browser and delight our users.', '|', '*/', '', '$app = require_once __DIR__.\'/bootstrap/app.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request', '| through the kernel, and send the associated response back to', '| the client\'s browser allowing them to enjoy the creative', '| and wonderful application we have prepared for them.', '|', '*/', '', '$kernel = $app->make(Illuminate\\Contracts\\Http\\Kernel::class);', '', '$response = $kernel->handle(', '    $request = Illuminate\\Http\\Request::capture()', ');', '', '$response->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:119)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(ErrorException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:96)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(ErrorException))                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract((array) $_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(FatalError)) in /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function renderHttpResponse(Throwable $e)
  5.     {
  6.         $this->getExceptionHandler()->render($this->app['request'], $e)->send();
  7.     }
  8.     /**
  9.      * Handle the PHP shutdown event.
  10.      *
  1.         }
  2.         if ($this->app->runningInConsole()) {
  3.             $this->renderForConsole($e);
  4.         } else {
  5.             $this->renderHttpResponse($e);
  6.         }
  7.     }
  8.     /**
  9.      * Render an exception to the console.
  1.      * @return void
  2.      */
  3.     public function handleShutdown()
  4.     {
  5.         if (! is_null($error error_get_last()) && $this->isFatal($error['type'])) {
  6.             $this->handleException($this->fatalErrorFromPhpError($error0));
  7.         }
  8.     }
  9.     /**
  10.      * Create a new fatal error instance from an error array.
HandleExceptions->handleShutdown()

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'Symfony\\Component\\ErrorHandler\\Error\\FatalError: Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:355Stack trace:#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html in file /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 355#0 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:355Stack trace:#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '7.30.4', 'language_version' => '7.4.33', 'exception_class' => 'Symfony\\Component\\ErrorHandler\\Error\\FatalError', 'seen_at' => 1711619737, 'message' => 'Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:355Stack trace:#0 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, \'include(assets/...\', \'/home/u51172578...\', 355, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include()#2 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer->include(\'assets/js/excep...\')#3 /home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(355): include(\'/home/u51172578...\')#4 /home/u511725780/domains/cigi.org/public_html', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 355, 'method' => '[top]', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://cigi.org/page/notification/MjU2', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'host' => array('cigi.org'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.212.39.149'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b6bed81e5581dc-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('44.212.39.149')), 'cookies' => array(), 'session' => array('_token' => 'ERPVsTYbJWGb7DUk83Q1okKLDGwjOkSPtGnWTLo5'), 'route' => array('route' => null, 'routeParameters' => array('main' => 'notification', 'sub' => 'MjU2'), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Content\\ContentController@getBySubMenu', 'middleware' => array('web')), 'user' => array(), 'env' => array('laravel_version' => '7.30.4', 'laravel_locale' => 'en', 'laravel_config_cached' => false, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array(array('sql' => 'select * from `tbl_main_menu` where `main_menu_status` = ? and `main_menu_name` = ? limit 1', 'time' => 2.33, 'connection_name' => 'mysql', 'bindings' => array(0, 'notification'), 'microtime' => 1711619736.989746))), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/u511725780/domains/cigi.org/public_html', 'application_version' => null), 'housekeepingEndpoint' => 'https://cigi.org/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array()))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:306)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:211)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:119)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:96)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(FatalError))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:130)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleShutdown()