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(ViewException)) 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' => 'Facade\\Ignition\\Exceptions\\ViewException: Trying to get property \'title\' of non-object (View: /home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php) in file /home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php on line 2#0 /home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php(2): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(8, \'Trying to get p...\', \'/home/u51172578...\', 2, Array)#1 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(41): include(\'/home/u51172578...\')#2 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(57): Illuminate\\View\\Engines\\PhpEngine-&gt;evaluatePath(\'/home/u51172578...\', Array)#3 /home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine-&gt;get(\'/home/u51172578...\', Array)#4 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php(139): Facade\\Ignition\\Views\\Engines\\CompilerEngine-&gt;get(\'/home/u51172578...\', Array)#5 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View-&gt;getContents()#6 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View-&gt;renderContents()#7 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php(62): Illuminate\\View\\View-&gt;render()#8 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php(34): Illuminate\\Http\\Response-&gt;setContent(Object(Illuminate\\View\\View))#9 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(759): Illuminate\\Http\\Response-&gt;__construct(Object(Illuminate\\View\\View), 200, Array)#10 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(731): Illuminate\\Routing\\Router::toResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View))#11 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php(685): Illuminate\\Routing\\Router-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View))#12 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(128): Illuminate\\Routing\\Router-&gt;Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request))#13 /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))#14 /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))#15 /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))#16 /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))#17 /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))#18 /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))#19 /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))#20 /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))#21 /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))#22 /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))#23 /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))#24 /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))#25 /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))#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/Routing/Router.php(687): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#28 /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))#29 /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))#30 /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))#31 /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))#32 /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))#33 /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))#34 /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))#35 /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))#36 /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))#37 /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))#38 /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))#39 /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))#40 /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))#41 /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))#42 /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))#43 /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))#44 /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))#45 /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))#46 /home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#47 /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))#48 /home/u511725780/domains/cigi.org/public_html/index.php(55): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#49 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://cigi.org/_ignition/share-report', 'title' => '🧨 Trying to get property \'title\' of non-object (View: /home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php)', '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' => 1711701472, 'message' => 'Trying to get property \'title\' of non-object (View: /home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php)', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 2, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('@extends(\'front.layouts.app\')', '@section(\'title\',$content->title)', '@section(\'content\')', '@section(\'share\')', '<meta property="og:title" content="{{$content->title}}" />', '<meta property="og:image" content="{{asset(\'public/uploads/thumbnails\'.$content->image)}}" />', '<meta property="og:description" content="{{strip_tags($content->description)}}" />', '<meta property="og:type" content="article" />', '<meta property="og:locale" content="en_GB" />', '', '<meta name="twitter:card" content="summary_large_image">', '<meta name="twitter:site" content="@cigi">', '<meta name="twitter:title" content="{{$content->title}}">', '<meta name="twitter:description" content="{{strip_tags($content->description)}}">', '<meta name="twitter:image" content="{{asset(\'public/uploads/thumbnails\'.$content->image)}}">', '<meta name="twitter:domain" content="{{request()->getHost()}}">', '@endsection', '<meta property="og:url" content="{{url()->current()}}" />', '', '<link rel="stylesheet" href="{{asset(\'public\\front\\Components\\css\\ServiceCard.css\')}}">', '<section class="" style="background-image:url({{asset($banner)}});background-size: cover;height:260px;">', '    <div class="page-header page-header-light py-5 mb-0" style="background-image: linear-gradient(180deg, #327369e0 0%, #014a3fd9 100%);height: 260px;">', '        <div class="container">', '            <div class="row text-center">', '                <div class="col-12" style="text-align:left;padding-left:5%;">', '                    <h1 class="text-12 text-white" >{{ucfirst($MenuName)}}</h1>', '                </div>', '            </div>', '        </div>', '    </div>', '</section>'), 'file' => '/home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php', 'is_application_frame' => true), array('line_number' => 2, 'method' => 'include', 'class' => null, 'code_snippet' => array('@extends(\'front.layouts.app\')', '@section(\'title\',$content->title)', '@section(\'content\')', '@section(\'share\')', '<meta property="og:title" content="{{$content->title}}" />', '<meta property="og:image" content="{{asset(\'public/uploads/thumbnails\'.$content->image)}}" />', '<meta property="og:description" content="{{strip_tags($content->description)}}" />', '<meta property="og:type" content="article" />', '<meta property="og:locale" content="en_GB" />', '', '<meta name="twitter:card" content="summary_large_image">', '<meta name="twitter:site" content="@cigi">', '<meta name="twitter:title" content="{{$content->title}}">', '<meta name="twitter:description" content="{{strip_tags($content->description)}}">', '<meta name="twitter:image" content="{{asset(\'public/uploads/thumbnails\'.$content->image)}}">', '<meta name="twitter:domain" content="{{request()->getHost()}}">', '@endsection', '<meta property="og:url" content="{{url()->current()}}" />', '', '<link rel="stylesheet" href="{{asset(\'public\\front\\Components\\css\\ServiceCard.css\')}}">', '<section class="" style="background-image:url({{asset($banner)}});background-size: cover;height:260px;">', '    <div class="page-header page-header-light py-5 mb-0" style="background-image: linear-gradient(180deg, #327369e0 0%, #014a3fd9 100%);height: 260px;">', '        <div class="container">', '            <div class="row text-center">', '                <div class="col-12" style="text-align:left;padding-left:5%;">', '                    <h1 class="text-12 text-white" >{{ucfirst($MenuName)}}</h1>', '                </div>', '            </div>', '        </div>', '    </div>', '</section>'), 'file' => '/home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php', 'is_application_frame' => true), array('line_number' => 41, 'method' => 'evaluatePath', 'class' => 'Illuminate\\View\\Engines\\PhpEngine', 'code_snippet' => array('     * @param  array  $__data', '     * @return string', '     */', '    protected function evaluatePath($__path, $__data)', '    {', '        $obLevel = ob_get_level();', '', '        ob_start();', '', '        extract($__data, EXTR_SKIP);', '', '        // We\'ll evaluate the contents of the view inside a try/catch block so we can', '        // flush out any stray output that might get out before an error occurs or', '        // an exception is thrown. This prevents any partial views from leaking.', '        try {', '            include $__path;', '        } catch (Throwable $e) {', '            $this->handleViewException($e, $obLevel);', '        }', '', '        return ltrim(ob_get_clean());', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param  \\Throwable  $e', '     * @param  int  $obLevel', '     * @return void', '     *', '     * @throws \\Throwable'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php', 'is_application_frame' => false), array('line_number' => 57, 'method' => 'get', 'class' => 'Illuminate\\View\\Engines\\CompilerEngine', 'code_snippet' => array('     */', '    public function get($path, array $data = [])', '    {', '        $this->lastCompiled[] = $path;', '', '        // If this given view has expired, which means it has simply been edited since', '        // it was last compiled, we will re-compile the views so we can evaluate a', '        // fresh copy of the view. We\'ll pass the compiler the path of the view.', '        if ($this->compiler->isExpired($path)) {', '            $this->compiler->compile($path);', '        }', '', '        // Once we have the path to the compiled file, we will evaluate the paths with', '        // typical PHP just like any other templates. We also keep a stack of views', '        // which have been rendered for right exception messages to be generated.', '        $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);', '', '        array_pop($this->lastCompiled);', '', '        return $results;', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param  \\Throwable  $e', '     * @param  int  $obLevel', '     * @return void', '     *', '     * @throws \\Throwable', '     */'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'get', 'class' => 'Facade\\Ignition\\Views\\Engines\\CompilerEngine', 'code_snippet' => array('', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @param string $path', '     * @param array $data', '     *', '     * @return string', '     */', '    public function get($path, array $data = [])', '    {', '        $this->currentPath = $path;', '', '        $this->collectViewData($path, $data);', '', '        return parent::get($path, $data);', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param \\Throwable $baseException', '     * @param int $obLevel', '     *', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    protected function handleViewException(Throwable $baseException, $obLevel)', '    {', '        while (ob_get_level() > $obLevel) {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php', 'is_application_frame' => false), array('line_number' => 139, 'method' => 'getContents', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('        // Once we\'ve finished rendering the view, we\'ll decrement the render count', '        // so that each sections get flushed out next time a view is created and', '        // no old sections are staying around in the memory of an environment.', '        $this->factory->decrementRender();', '', '        return $contents;', '    }', '', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @return string', '     */', '    protected function getContents()', '    {', '        return $this->engine->get($this->path, $this->gatherData());', '    }', '', '    /**', '     * Get the data bound to the view instance.', '     *', '     * @return array', '     */', '    public function gatherData()', '    {', '        $data = array_merge($this->factory->getShared(), $this->data);', '', '        foreach ($data as $key => $value) {', '            if ($value instanceof Renderable) {', '                $data[$key] = $value->render();', '            }'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 122, 'method' => 'renderContents', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('', '    /**', '     * Get the contents of the view instance.', '     *', '     * @return string', '     */', '    protected function renderContents()', '    {', '        // We will keep track of the amount of views being rendered so we can flush', '        // the section after the complete rendering operation is done. This will', '        // clear out the sections for any separate views that may be rendered.', '        $this->factory->incrementRender();', '', '        $this->factory->callComposer($this);', '', '        $contents = $this->getContents();', '', '        // Once we\'ve finished rendering the view, we\'ll decrement the render count', '        // so that each sections get flushed out next time a view is created and', '        // no old sections are staying around in the memory of an environment.', '        $this->factory->decrementRender();', '', '        return $contents;', '    }', '', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @return string', '     */', '    protected function getContents()'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 91, 'method' => 'render', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('', '        $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;', '    }', '', '    /**', '     * Get the string contents of the view.', '     *', '     * @param  callable|null  $callback', '     * @return array|string', '     *', '     * @throws \\Throwable', '     */', '    public function render(callable $callback = null)', '    {', '        try {', '            $contents = $this->renderContents();', '', '            $response = isset($callback) ? $callback($this, $contents) : null;', '', '            // Once we have the contents of the view, we will flush the sections if we are', '            // done rendering all views so that there is nothing left hanging over when', '            // another view gets rendered in the future by the application developer.', '            $this->factory->flushStateIfDoneRendering();', '', '            return ! is_null($response) ? $response : $contents;', '        } catch (Throwable $e) {', '            $this->factory->flushState();', '', '            throw $e;', '        }', '    }'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 62, 'method' => 'setContent', 'class' => 'Illuminate\\Http\\Response', 'code_snippet' => array('        $this->original = $content;', '', '        // If the content is "JSONable" we will set the appropriate header and convert', '        // the content to JSON. This is useful when returning something like models', '        // from routes that will be automatically transformed to their JSON form.', '        if ($this->shouldBeJson($content)) {', '            $this->header(\'Content-Type\', \'application/json\');', '', '            $content = $this->morphToJson($content);', '        }', '', '        // If this content implements the "Renderable" interface then we will call the', '        // render method on the object so we will avoid any "__toString" exceptions', '        // that might be thrown and have their errors obscured by PHP\'s handling.', '        elseif ($content instanceof Renderable) {', '            $content = $content->render();', '        }', '', '        parent::setContent($content);', '', '        return $this;', '    }', '', '    /**', '     * Determine if the given content should be turned into JSON.', '     *', '     * @param  mixed  $content', '     * @return bool', '     */', '    protected function shouldBeJson($content)', '    {'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php', 'is_application_frame' => false), array('line_number' => 34, 'method' => '__construct', 'class' => 'Illuminate\\Http\\Response', 'code_snippet' => array('', '    /**', '     * Create a new HTTP response.', '     *', '     * @param  mixed  $content', '     * @param  int  $status', '     * @param  array  $headers', '     * @return void', '     *', '     * @throws \\InvalidArgumentException', '     */', '    public function __construct($content = \'\', $status = 200, array $headers = [])', '    {', '        $this->headers = new ResponseHeaderBag($headers);', '', '        $this->setContent($content);', '        $this->setStatusCode($status);', '        $this->setProtocolVersion(\'1.0\');', '    }', '', '    /**', '     * Set the content on the response.', '     *', '     * @param  mixed  $content', '     * @return $this', '     */', '    public function setContent($content)', '    {', '        $this->original = $content;', '', '        // If the content is "JSONable" we will set the appropriate header and convert'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php', 'is_application_frame' => false), array('line_number' => 759, 'method' => 'toResponse', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('            $response = $response->toResponse($request);', '        }', '', '        if ($response instanceof PsrResponseInterface) {', '            $response = (new HttpFoundationFactory)->createResponse($response);', '        } elseif ($response instanceof Model && $response->wasRecentlyCreated) {', '            $response = new JsonResponse($response, 201);', '        } elseif (! $response instanceof SymfonyResponse &&', '                   ($response instanceof Arrayable ||', '                    $response instanceof Jsonable ||', '                    $response instanceof ArrayObject ||', '                    $response instanceof JsonSerializable ||', '                    is_array($response))) {', '            $response = new JsonResponse($response);', '        } elseif (! $response instanceof SymfonyResponse) {', '            $response = new Response($response, 200, [\'Content-Type\' => \'text/html\']);', '        }', '', '        if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {', '            $response->setNotModified();', '        }', '', '        return $response->prepare($request);', '    }', '', '    /**', '     * Substitute the route bindings onto the route.', '     *', '     * @param  \\Illuminate\\Routing\\Route  $route', '     * @return \\Illuminate\\Routing\\Route', '     *'), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php', 'is_application_frame' => false), array('line_number' => 731, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Routing\\Router', 'code_snippet' => array('     */', '    protected function sortMiddleware(Collection $middlewares)', '    {', '        return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all();', '    }', '', '    /**', '     * Create a response instance from the given value.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @param  mixed  $response', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public function prepareResponse($request, $response)', '    {', '        return static::toResponse($request, $response);', '    }', '', '    /**', '     * Static version of prepareResponse.', '     *', '     * @param  \\Symfony\\Component\\HttpFoundation\\Request  $request', '     * @param  mixed  $response', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    public static function toResponse($request, $response)', '    {', '        if ($response instanceof Responsable) {', '            $response = $response->toResponse($request);', '        }', ''), 'file' => '/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', 'middleware' => array('web')), 'user' => array(), 'view' => array('view' => '/home/u511725780/domains/cigi.org/public_html/resources/views/front/projects/project_detail.blade.php', 'data' => array('errors' => '<pre class=sf-dump id=sf-dump-165354071 data-indent-pad="  "><span class=sf-dump-note>Illuminate\\Support\\ViewErrorBag</span> {<a class=sf-dump-ref>#532</a><samp data-depth=1 class=sf-dump-expanded>  #<span class=sf-dump-protected title="Protected property">bags</span>: []</samp>}</pre><script>Sfdump("sf-dump-165354071", {"maxDepth":3,"maxStringLength":160})</script>', 'submenu' => '<pre class=sf-dump id=sf-dump-1277885795 data-indent-pad="  ">{<a class=sf-dump-ref>#542</a><samp data-depth=1 class=sf-dump-expanded>  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_id</span>": <span class=sf-dump-num>18</span>  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_status</span>": <span class=sf-dump-num>0</span>  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_name</span>": "<span class=sf-dump-str title="8 characters">Projects</span>"  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_link</span>": "<span class=sf-dump-str title="8 characters">projects</span>"  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_banner</span>": "<span class=sf-dump-str title="66 characters">/public/uploads/sub_menu_banner/Gp2pwutGBzRoLXI6eNp0yWaXrnEWRW.jpg</span>"  +"<span class=sf-dump-public title="Runtime added dynamic property">sub_menu_menuid</span>": <span class=sf-dump-num>4</span></samp>}</pre><script>Sfdump("sf-dump-1277885795", {"maxDepth":3,"maxStringLength":160})</script>', 'MenuName' => '<pre class=sf-dump id=sf-dump-2045347075 data-indent-pad="  ">"<span class=sf-dump-str title="8 characters">Projects</span>"</pre><script>Sfdump("sf-dump-2045347075", {"maxDepth":3,"maxStringLength":160})</script>', 'banner' => '<pre class=sf-dump id=sf-dump-601923651 data-indent-pad="  ">"<span class=sf-dump-str title="66 characters">/public/uploads/sub_menu_banner/Gp2pwutGBzRoLXI6eNp0yWaXrnEWRW.jpg</span>"</pre><script>Sfdump("sf-dump-601923651", {"maxDepth":3,"maxStringLength":160})</script>', 'content' => '<pre class=sf-dump id=sf-dump-253031859 data-indent-pad="  "><span class=sf-dump-const>null</span></pre><script>Sfdump("sf-dump-253031859", {"maxDepth":3,"maxStringLength":160})</script>', 'projects' => '<pre class=sf-dump id=sf-dump-904518328 data-indent-pad="  "><span class=sf-dump-note>Illuminate\\Support\\Collection</span> {<a class=sf-dump-ref>#540</a><samp data-depth=1 class=sf-dump-expanded>  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:3</span> [<samp data-depth=2 class=sf-dump-compact>    <span class=sf-dump-index>0</span> => {<a class=sf-dump-ref>#529</a><samp data-depth=3 class=sf-dump-compact>      +"<span class=sf-dump-public title="Runtime added dynamic property">id</span>": <span class=sf-dump-num>4</span>      +"<span class=sf-dump-public title="Runtime added dynamic property">title</span>": "<span class=sf-dump-str title="14 characters">Career Mission</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">image</span>": "<span class=sf-dump-str title="57 characters">/project_img/lGwcRBNOpED0hOpaO1N4TNRxyt69WE1663065920.png</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">description</span>": """        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;What is Career Mission?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Career Mission is our core project started in 1998. The main objective of this project is to ensure that &amp;lsquo;NO STUDENT LEFT UNGUIDED&amp;rsquo;, which also happens to be its motto. CIGI has been educating the society on the wide range of career options available across the globe ever since our establishment. We focus on the need of Career Planning and scientific method of career guidance. Career Mission focuses on ensuring scientific methods to test the aptitude of the students and thus enabling them to take up the path which they are most suitable for. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Career guidance is done absolutely free of cost to anyone who walks into our office at Golf Link Road, Chevayur, Calicut -17, while our wide network of career guides continues to inspire students across the state. CIGI career guidance has been over the years acclaimed to be the most reliable and trusted source of career information.&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;This mission is taken forward through study camps, workshops, exhibitions, lecture series and seminars/webinars which are conducted throughout the year. We provide the student community with immense knowledge on various fields and options to choose from. Our expert career counsellors will help you understand your true potential and will lead you to a brighter future. Our prime mission is &lt;em&gt;&amp;lsquo;to establish education with a purpose, employment with passion and choice, excellence in all aspects of life and to provide empowerment with character&amp;rsquo;. &lt;/em&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;What is special about us?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;CIGI is the only organisation in India that provides absolutely free, unbiased and quality career guidance and counselling for everyone. Apart from that, what distinguishes CIGI from other organisations is our commitment in identifying the skills and interests of the students through competency development, orientation programs, counselling along with talent nurturing. Our exclusive Differential Aptitude Test managed by the Department of Career Guidance has been successful in discovering the inner traits of the aspirants in order to get a precise knowledge of where their skills and inclinations lay, thus making it easier to choose their career option accordingly. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;How do we do that?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Listed below are some of the distinguished facilities provided by Career Mission.&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Free career guidance and counselling&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career talks/classes/lectures&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career exhibitions&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career pamphlets&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career handbooks&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career Blogs/Vlogs&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career database management system&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Peer career guidance groups&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career master&amp;rsquo;s forum&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Career booths&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;C-talk video series&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;/ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;How to Contact Us?&lt;/strong&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;a href=&quot;tel:+91 8086663003&quot;&gt;+91 808666&lt;/a&gt;&lt;a href=&quot;tel:+91 8086664004&quot;&gt;4004&lt;/a&gt;, &lt;a href=&quot;tel:+91 8086662004&quot;&gt;+91 8086662004&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3732 characters">&lt;p&gt;&amp;nbsp;&lt;/p&gt;</span>        """    </samp>}    <span class=sf-dump-index>1</span> => {<a class=sf-dump-ref>#546</a><samp data-depth=3 class=sf-dump-compact>      +"<span class=sf-dump-public title="Runtime added dynamic property">id</span>": <span class=sf-dump-num>5</span>      +"<span class=sf-dump-public title="Runtime added dynamic property">title</span>": "<span class=sf-dump-str title="5 characters">C DAT</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">image</span>": "<span class=sf-dump-str title="57 characters">/project_img/jugLk0JBRNSuiTODkjSqG6taD4yz3G1663065863.png</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">description</span>": """        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;What is C DAT?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;CIGI Differential Aptitude Test (C-DAT) is one of the most successful and sensational inventions by our Faculty of Research and Analysis. Came into being in 2008 after running standardisation tests in over 4000 students comprising both high school and higher secondary,&amp;nbsp; it soon developed to become one of the best of its kind in the country. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;Significance of C-DAT&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Choosing a career option that suits one&amp;#39;s skills and interests is necessary for smooth sailing in professional life. Disinterest in a career can cause many problems that can even cause psychological distress like depression so it is indeed essential to ensure the profession corresponds with passion. This shows the significance of an Aptitude Test. C-DAT is designed in a way to effectively discover the inner traits and inclinations of the student using a series of tests. It helps in clarifying students&amp;#39; doubts on&amp;nbsp; choosing a better career path according to their strength and potential.&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;How do we do that?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;C-DAT is perfect for students who aren&amp;rsquo;t sure or confused about their future or present career choices. It facilitates the assessment of one&amp;#39;s abilities in different fields such as verbal reasoning, numerical reasoning, mechanical reasoning and space relations. This in terms creates your path to your career by generating ideas and more suitable options to choose from after analysing the skills and interests accordingly. It helps in shaping their decision making capacities as well.&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;Why C-DAT?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;CIGI Differential Aptitude Test is a perfectly organised systematic series of tests where items of the test tool were analysed under the Item Response Model framework to establish item properties. The standardisation process was supported by Parisons Group, Calicut. Our experience over the years has proved that CDAT is the right tool to identify the basic inherent capacity of high school and higher secondary students. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;In 2020, amidst the pandemic, we were able to successfully transform the CDAT process into a completely online model. The uniqueness of C-DAT Online is that it is not an automated test, our counsellors stay with the students throughout the test. The results are then elaborated to the students and parents through personal counselling. This whole process can be completed sitting in the comfort of your homes. The candidates may also visit CIGI Campus at Kozhikode for an in-person CDAT counselling experience. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;For more information call us at &lt;a href=&quot;tel:+91 8086664001&quot;&gt;+91 8086664001&lt;/a&gt; or email at [email protected]&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="3170 characters">&lt;p&gt;&lt;a href=&quot;https://cigicareer.com/cdat/&quot;&gt;For further details and registration click here&lt;/a&gt;&lt;/p&gt;</span>        """    </samp>}    <span class=sf-dump-index>2</span> => {<a class=sf-dump-ref>#548</a><samp data-depth=3 class=sf-dump-compact>      +"<span class=sf-dump-public title="Runtime added dynamic property">id</span>": <span class=sf-dump-num>6</span>      +"<span class=sf-dump-public title="Runtime added dynamic property">title</span>": "<span class=sf-dump-str title="19 characters">Competency Movement</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">image</span>": "<span class=sf-dump-str title="57 characters">/project_img/ZZLyZqetAlH4jUdeTpQmmAfyTXdwjG1663065833.png</span>"      +"<span class=sf-dump-public title="Runtime added dynamic property">description</span>": """        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;WHAT IS A CENTRE FOR COMPETENCY DEVELOPMENT &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Centre for Competency Development is an innovative project established as a part of celebrating CIGI&amp;#39;s&amp;nbsp; two decades of meaningful intervention in empowering the weaker segments of society. In 2016 CIGI took the initiative to set up 100 Centres for Competency Development &lt;em&gt;(&lt;strong&gt;Mission 100C4C&lt;/strong&gt;)&lt;/em&gt; at grassroots level in various parts of the state. The idea of &lt;strong&gt;&lt;em&gt;Mission 100C4C&lt;/em&gt;&lt;/strong&gt; is an end result of deliberations and constant dialogues among think tanks of CIGI on lack of competence in students and job seekers from all streams who are pursuing their higher studies or looking for a job. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;The project was built on a belief that the accomplishment of this mission would provide a solution for this affecting condition and lead to a massive transformation in the current occupational and educational state of the community.&amp;nbsp; By 2019, CIGI successfully completed this mission of implementing 100 centres and the project is still continuing through various activities for developing competence among the community.&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp;A Centre for Competition instituted under &lt;strong&gt;&lt;em&gt;C4C&lt;/em&gt;&lt;/strong&gt; is basically an independent centre accredited to and monitored by CIGI and is envisioned to enhance the competency of students, nurture their talent, develop their skills, and direct them in their pursuit of better life and career.&amp;nbsp; &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;As the pandemic swept through the globe, we decided to create a novel model of competency development through &lt;strong&gt;&lt;em&gt;&amp;lsquo;C-Circle&amp;rsquo;s (Competency Circles&amp;rsquo;&lt;/em&gt;&lt;/strong&gt;. The C-Cirlce&amp;rsquo;s are WhatsApp based online groups through which regular aspirants are prepared to face competitive examinations. This is done through regular updates of study materials and daily, week and monthly tests. &lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Started in 2020, our mission was, &lt;strong&gt;&lt;em&gt;&amp;lsquo;1000 C-Circles&amp;rsquo; &lt;/em&gt;&lt;/strong&gt;, which was accomplished in a short span of time with people from across the state joining this initiative.&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;CENTRE FOR COMPETITIONS (C4C Centres)&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;WHO CAN ACCREDIT AS A CENTRE FOR COMPETITIONS&lt;em&gt;? &lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp;Any local chapter of CIGI, Colleges, Schools, Orphanages, Panchayats, NGO&amp;rsquo;s or any similar institutes can apply to get accredited as a Centre for Competition under the project, Competency Movement.&amp;nbsp; Interested institutes/organisations have to sign a Memorandum of Understanding (MoU) with CIGI to operate the centre. The project works with the objective to examine the academic personal and career excellence of young aspirants aiming at ensuring general competency development of those with qualification of 10th or above.&amp;nbsp; Any institutions that meet the requirements mentioned below are eligible to accredit as a Centre for Competitions under the project:&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;ol&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;An office space (preferably with internet connection)&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Class Rooms/ Training Hall (preferably with Audio Visual Equipments&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Co-ordinator (Full time/Part Time) &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Committee to supervise the centre &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;/ol&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;&amp;nbsp;THE ELIGIBILITY TO ENROL IN CENTRE FOR COMPETITIONS? &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;ol&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Students from primary class onwards for developing competency&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Students appearing for scholarship examinations like LSS, USS, and NMMS etc. &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Students appearing for entrance examinations &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Job seekers appearing for entry to service exams of PSC, UPSC, SSC etc &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Public who like to improve competency skills&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;/ol&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;HOW DO WE DO THAT?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;CIGI HQ and faculty members are jointly responsible for the smooth functioning of the project.&lt;br /&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">Effective and productive management of the centres is the main concern of our HQ and we do that through various activities such as:&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Timely consultation and motivation&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Preparation of the manuals, course modules, and study materials.&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Training for management, coordinators and faculties.&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Providing faculties.&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Entrance tests, model examinations, and evaluation.&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Sponsorship for needy students (as far as possible)&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;/ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;CIGI Competency Movement is a mixture of various events as&lt;/span&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Competency Circles&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Exam oriented training&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Faculty development program&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Competency exam orientation &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Information and guidance for Competency Examinations &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Advocacy and guidance for Competency Centres&lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default">\\t</span>&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Training for Competency Entrepreneurship &lt;/span&gt;&lt;/li&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;/ul&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&lt;strong&gt;Conatct us : &lt;a href=&quot;tel:+91 8086663008&quot;&gt;+91 808666300&lt;/a&gt;&lt;a href=&quot;tel:+91 8086663005&quot;&gt;5&lt;/a&gt;, &lt;a href=&quot;tel:+91 8086662004&quot;&gt;+91 8086662004&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&amp;nbsp;&lt;/p&gt;<span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters"><span class="sf-dump-default sf-dump-ns">\\r\\n</span></span>        <span class=sf-dump-str title="6083 characters">&lt;p&gt;&amp;nbsp;&lt;/p&gt;</span>        """    </samp>}  </samp>]</samp>}</pre><script>Sfdump("sf-dump-904518328", {"maxDepth":3,"maxStringLength":160})</script>', 'shares' => '<pre class=sf-dump id=sf-dump-1095499920 data-indent-pad="  "><span class=sf-dump-note>Jorenvh\\Share\\Share</span> {<a class=sf-dump-ref>#539</a><samp data-depth=1 class=sf-dump-expanded>  #<span class=sf-dump-protected title="Protected property">url</span>: "<span class=sf-dump-str title="35 characters">https://cigi.org/page/projects/MTA=</span>"  #<span class=sf-dump-protected title="Protected property">generatedUrls</span>: <span class=sf-dump-note>array:3</span> [<samp data-depth=2 class=sf-dump-compact>    "<span class=sf-dump-key>facebook</span>" => "<span class=sf-dump-str title="80 characters">https://www.facebook.com/sharer/sharer.php?u=https://cigi.org/page/projects/MTA=</span>"    "<span class=sf-dump-key>whatsapp</span>" => "<span class=sf-dump-str title="55 characters">https://wa.me/?text=https://cigi.org/page/projects/MTA=</span>"    "<span class=sf-dump-key>twitter</span>" => "<span class=sf-dump-str title="96 characters">https://twitter.com/intent/tweet?text=Default+share+text&amp;url=https://cigi.org/page/projects/MTA=</span>"  </samp>]  #<span class=sf-dump-protected title="Protected property">title</span>: "<span class=sf-dump-str title="18 characters">Default share text</span>"  #<span class=sf-dump-protected title="Protected property">options</span>: []  #<span class=sf-dump-protected title="Protected property">prefix</span>: "<span class=sf-dump-str title="27 characters">&lt;div id=&quot;social-links&quot;&gt;&lt;ul&gt;</span>"  #<span class=sf-dump-protected title="Protected property">suffix</span>: "<span class=sf-dump-str title="11 characters">&lt;/ul&gt;&lt;/div&gt;</span>"  #<span class=sf-dump-protected title="Protected property">html</span>: "<span class=sf-dump-str title="549 characters">&lt;li&gt;&lt;a href=&quot;https://www.facebook.com/sharer/sharer.php?u=https://cigi.org/page/projects/MTA=&quot; class=&quot;social-button &quot; id=&quot;&quot; title=&quot;&quot;&gt;&lt;span class=&quot;fa fa-facebook-official&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://wa.me/?text=https://cigi.org/page/projects/MTA=&quot; class=&quot;social-button &quot; id=&quot;&quot; title=&quot;&quot;&gt;&lt;span class=&quot;fa fa-whatsapp&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://twitter.com/intent/tweet?text=Default+share+text&amp;url=https://cigi.org/page/projects/MTA=&quot; class=&quot;social-button &quot; id=&quot;&quot; title=&quot;&quot;&gt;&lt;span class=&quot;fa fa-twitter&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;</span>"</samp>}</pre><script>Sfdump("sf-dump-1095499920", {"maxDepth":3,"maxStringLength":160})</script>')), '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:364)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:343)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:327)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ViewException))
     (/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(ViewException))
     (/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(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(ViewException))
     (/home/u511725780/domains/cigi.org/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ViewException))
     (/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(Facade\\Ignition\\Exceptions\\ViewException))#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(Facade\\Ignition\\Exceptions\\ViewException))#11 /home/u511725780/domains/cigi.org/public_html/app/Exceptions/Handler.php(53): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(Facade\\Ignition\\Exceptions\\ViewException))#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(Facade\\Ignition\\Exceptions\\ViewException))#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(Facade\\Ignition\\Exceptions\\ViewException))#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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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' => 1711701472, '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/projects/MTA=', '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('34.224.33.93'), 'cdn-loop' => array('cloudflare'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86be8a557b95578b-IAD'), 'x-forwarded-proto' => array('https'), 'cf-visitor' => array('{"scheme":"https"}'), 'cf-connecting-ip' => array('34.224.33.93')), 'cookies' => array(), 'session' => array('_token' => 'rr1xZbarW781W2Gbg7phWuGDAvbTM7qOSqldjzwO'), 'route' => array('route' => null, 'routeParameters' => array('id' => 'MTA='), 'controllerAction' => 'App\\Http\\Controllers\\Front\\Projects\\ProjectController@getProject', '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_sub_menu` where `sub_menu_link` = ? and `sub_menu_status` = ? limit 1', 'time' => 1.45, 'connection_name' => 'mysql', 'bindings' => array('projects', 0), 'microtime' => 1711701472.221291), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` = ? and `project_status` = ? and `project_active_status` = ? limit 1', 'time' => 0.26, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.221711), array('sql' => 'select `project_id` as `id`, `project_title` as `title`, `project_img` as `image`, `project_desc` as `description` from `tbl_projects` where `project_id` != ? and `project_status` = ? and `project_active_status` = ? order by `project_priority` desc limit 3', 'time' => 0.33, 'connection_name' => 'mysql', 'bindings' => array('10', 0, 0), 'microtime' => 1711701472.222133))), '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()