Illuminate\View\ViewException {#7702 #severity: E_ERROR }
return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?><?php $component = $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb; ?><?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?><?php $component = $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1; ?><?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?><?php $component = $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb; ?><?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?><?php $component = $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d; ?><?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?><?php $component = $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1; ?><?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?><?php $component = $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb; ?><?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes(['props' => $propsForContentModule()]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?><?php $component = $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9; ?><?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?><?php $component = $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d; ?><?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?><?php $component = $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1; ?><?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?><?php $component = $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb; ?><?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|-------------------------------------------------------------------------- return $portableValue; } public function getParameterValue(Page\Node $node, string $alias): Value { return $node->getParameter($alias)->getActiveValue($this->page, $this->getMappableNodes()); } public function getMagicVars(): array { $magicVars = []; public function getParameterData(Page\Node $node, string $alias): mixed { return $this->getParameterPortableValue($node, $alias)->data; } public function getParameterPortableValue(Page\Node $node, string $alias): Value\PortableValue { $portableValue = $this->getParameterValue($node, $alias)->getData($this->contentAuthorization, $this->page, $this->getMappableNodes()); if(is_string($portableValue->data)) $portableValue->data = app(WebsiteService::class)->interceptStringVariables($portableValue->data, true); return $portableValue; return $pageData; }*/ public function getParameterData(Page\Node $node, string $alias): mixed { return $this->getParameterPortableValue($node, $alias)->data; } public function getParameterPortableValue(Page\Node $node, string $alias): Value\PortableValue { $portableValue = $this->getParameterValue($node, $alias)->getData($this->contentAuthorization, $this->page, $this->getMappableNodes());abstract class ContentModule extends BaseComponent { protected Node $node; protected function getParameterData(string $alias): mixed { return app(WebsiteService::class)->getParameterData($this->node, $alias); } protected function getParameterPortableValue(string $alias): mixed { return app(WebsiteService::class)->getParameterPortableValue($this->node, $alias); } public bool $showEditorialReviewer; public bool $showMedicalReviewer; public bool $showDateUpdated; protected function setupProperties(): array { $itemVersion = $this->getParameterData('content'); $page = $itemVersion ? $itemVersion->page : app(WebsiteService::class)->getPage(); $editorialReviewer = $itemVersion?->editorialReviewer?->label; $medicalReviewer = $itemVersion?->medicalReviewer?->label; $datePublished = $page->publish_start->format('n/j/Y'); foreach(array_diff($this->requiredInputs, $foundInputs) as $missingInput) { throw new \Exception("Required input '$missingInput' not found."); } foreach($this->setupProperties() as $prop => $value) { $this->$prop = $value; } } public function render(): View|Htmlable|\Closure|string { $parameters = static::extractConstructorParameters(); $dataKeys = array_keys($data); if (empty(array_diff($parameters, $dataKeys))) { return new static(...array_intersect_key($data, array_flip($parameters))); } return Container::getInstance()->make(static::class, $data); }<?php foreach ($attributes as $__key => $__value) { if (array_key_exists($__key, $__defined_vars)) unset($$__key);} ?><?php unset($__defined_vars); ?><?php if (isset($component)) { $__componentOriginaleb2c5208921723a278c0b79a61d14045e17e7aa4 = $component; } ?><?php $component = App\View\Components\Apps\Hec\ContentModule\PublicationInfo::resolve(['props' => $props] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?><?php $component->withName('apps.hec.content-module.publicationInfo'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\ContentModule\PublicationInfo::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes(['props' => $propsForContentModule()]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?><?php $component = $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9; ?><?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?><?php $component = $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d; ?><?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?><?php $component = $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1; ?><?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?><?php $component = $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb; ?><?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 try { $view = value($view, $data); if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?><?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?><?php endif; ?><?php $component->withAttributes([]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?><?php $component = $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09; ?><?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?><?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // 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 { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // 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. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // 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 section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @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 protected static function stringifyMixedContent(mixed $content, ResponseType $responseType): string { if(is_callable($content)) $content = $content(); if(is_a($content, View::class)) $content = $content->render(); if($responseType === ResponseType::JSON) $content = json_encode($content); if(!is_string($content)) /** If the request is from the CDN and we have non-stale cache, serve it */ if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache()) return $clientRequest->getCachedResponse(); /** Get fresh copy of content */ $content = self::stringifyMixedContent($content, $responseType); /** Update our local cache, if we were provided a ClientRequest */ $clientRequest?->processContent($content); /** serve the fresh response */ return view(WebsiteService::getView('hec'), [ 'props' => [ 'page' => $page ] ]); } ); } public function sitemap() { $ttl = 60 * 60 * 8; } abort(404); } return $this->_page($request, $page); } protected function _page(Request $request, Page $page) { $this->clientRequest = $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::Page, ResponseType::TextHtml, $page) : null; * @param array $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } /** * Handle calls to missing methods on the controller. * public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } return $controller->{$method}(...array_values($parameters)); } * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } /** * Get the controller instance for the route. { $this->container = $this->container ?: new Container; try { if ($this->isControllerAction()) { return $this->runController(); } return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }use Closure;use Illuminate\Http\RedirectResponse;class AdjustRedirectsMiddleware { public function handle($request, Closure $next) { $response = $next($request); if($response instanceof RedirectResponse) { $modifiedUrl = $this->modifyUrl($response->getTargetUrl()); if($modifiedUrl !== $response->getTargetUrl()) // 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); * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); App::setLocale(Session::get('applocale')); } else { // This is optional as Laravel will automatically set the fallback language if there is none specified App::setLocale(Config::get('app.fallback_locale')); } return $next($request); }} // 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); } throw $exception; } return $next($request); }} // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * $request->setRouteResolver(fn () => $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\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. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } * @return mixed */ public function handle($request, Closure $next) { if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) { return $next($request); } $this->debugbar->boot(); try { // 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); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // 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); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // 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); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // 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); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // 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); { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } /** Replace the current request with the new one */ app()->instance('request', $request); /** Dispatch the request through the HTTP kernel */ $kernel = app(Kernel::class); $response = $kernel->handle($request); /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */ $kernel->terminate($request, $response); /** Return the response content or the response itself */ $this->processContent( newContent: Utility::runControllerFromUrl( method: HttpMethod::GET, path: $this->getPathname(), parameters: $this->getQueryParameters(), domain: config('hec.v2.hosts.origin') )->getContent() ); $this->markRescan(false); } return; if($this->clientRequest->shouldPurge()) ClientRequest::purgeAndDelete([$this->clientRequest], 2); else $this->clientRequest->rescan(); }} if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } }; } else { $callback = function ($command) { $method = method_exists($command, 'handle') ? 'handle' : '__invoke'; return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * return $this->container->call([$command, $method]); }; } return $this->pipeline->send($command)->through($this->pipes)->then($callback); } /** * Attempt to find the batch with the given ID. * return (new Pipeline($this->container))->send($command) ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * ->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? [])) ->then(function ($command) use ($job) { return $this->dispatcher->dispatchNow( $command, $this->resolveHandler($job, $command) ); }); } /** * Resolve the handler for the given command. * if ($command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } $this->dispatchThroughMiddleware($job, $command); if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) { $this->ensureUniqueJobLockIsReleased($command); } { $payload = $this->payload(); [$class, $method] = JobName::parse($payload['job']); ($this->instance = $this->resolve($class))->{$method}($this, $payload['data']); } /** * Delete the job from the queue. * } // Here we will fire off the job and let it process. We will catch any exceptions, so // they can be reported to the developer's logs, etc. Once the job is finished the // proper events will be fired to let any listeners know this job has completed. $job->fire(); $this->raiseAfterJobEvent($connectionName, $job); } catch (Throwable $e) { $this->handleJobException($connectionName, $job, $options, $e); } * @return void */ protected function runJob($job, $connectionName, WorkerOptions $options) { try { return $this->process($connectionName, $job, $options); } catch (Throwable $e) { $this->exceptions->report($e); $this->stopWorkerIfLostConnection($e); } // fire off this job for processing. Otherwise, we will need to sleep the // worker so no more jobs are processed until they should be processed. if ($job) { $jobsProcessed++; $this->runJob($job, $connectionName, $options); if ($options->rest > 0) { $this->sleep($options->rest); } } else { { return $this->worker ->setName($this->option('name')) ->setCache($this->cache) ->{$this->option('once') ? 'runNextJob' : 'daemon'}( $connection, $queue, $this->gatherWorkerOptions() ); } /** * Gather all of the queue worker options as a single object. sprintf('Processing jobs from the [%s] %s.', $queue, str('queue')->plural(explode(',', $queue))) ); } return $this->runWorker( $connection, $queue ); } /** * Run the worker instance. if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * $this->buildStack[] = $className; $pushedToBuildStack = true; } $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod); if ($pushedToBuildStack) { array_pop($this->buildStack); } } $method = method_exists($this, 'handle') ? 'handle' : '__invoke'; try { return (int) $this->laravel->call([$this, $method]); } finally { if ($this instanceof Isolatable && $this->option('isolated') !== false) { $this->commandIsolationMutex()->forget($this); } } $input->validate(); if ($this->code) { $statusCode = ($this->code)($input, $output); } else { $statusCode = $this->execute($input, $output); if (!\is_int($statusCode)) { throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode))); } } $this->components = $this->laravel->make(Factory::class, ['output' => $this->output]); try { return parent::run( $this->input = $input, $this->output ); } finally { $this->untrap(); } } }); } } if (null === $this->dispatcher) { return $command->run($input, $output); } // bind before the console.command event, so the listeners have access to input options/arguments try { $command->mergeApplicationDefinition(); if ($command instanceof LazyCommand) { $command = $command->getCommand(); } $this->runningCommand = $command; $exitCode = $this->doRunCommand($command, $input, $output); $this->runningCommand = null; return $exitCode; } } try { $this->configureIO($input, $output); $exitCode = $this->doRun($input, $output); } catch (\Throwable $e) { if ($e instanceof \Exception && !$this->catchExceptions) { throw $e; } if (!$e instanceof \Exception && !$this->catchErrors) { new CommandStarting( $commandName, $input, $output = $output ?: new BufferedConsoleOutput ) ); $exitCode = parent::run($input, $output); $this->events->dispatch( new CommandFinished($commandName, $input, $output, $exitCode) ); $this->bootstrapWithoutBootingProviders(); } $this->bootstrap(); return $this->getArtisan()->run($input, $output); } catch (Throwable $e) { $this->reportException($e); $this->renderException($output, $e);$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);$status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput);/*|--------------------------------------------------------------------------| Shutdown The Application|--------------------------------------------------------------------------|
[7/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 0)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[6/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 1)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[5/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 2)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/body.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php:44)
at require('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[4/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 3)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/layout-group.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php:24)
at require('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/body.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php:44)
at require('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[3/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php) (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 4)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/node.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php:23)
at require('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/layout-group.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php:24)
at require('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/body.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php:44)
at require('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[2/7]
ViewException
|
|---|
Illuminate\View\ViewException:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned (View: /home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php)
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(TypeError), 5)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php', array('__env' => object(Factory), 'app' => object(Application), 'component' => 'apps.hec.content-module.publicationInfo', 'componentName' => 'dynamic-component', 'attributes' => object(ComponentAttributeBag), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'component' => 'apps.hec.content-module.publicationInfo', 'componentName' => 'dynamic-component', 'attributes' => object(ComponentAttributeBag), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:104)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php:30)
at require('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/node.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php:23)
at require('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/layout-group.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php:24)
at require('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/body.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php:44)
at require('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|
|
[1/7]
TypeError
|
|---|
TypeError:
App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned
at /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:246
at App\Services\Apps\Hec\WebsiteService->getParameterValue(object(Node), 'content')
(/home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:237)
at App\Services\Apps\Hec\WebsiteService->getParameterPortableValue(object(Node), 'content')
(/home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php:233)
at App\Services\Apps\Hec\WebsiteService->getParameterData(object(Node), 'content')
(/home/baldwin2/public_html/app/View/Components/Apps/Hec/ContentModule.php:14)
at App\View\Components\Apps\Hec\ContentModule->getParameterData('content')
(/home/baldwin2/public_html/app/View/Components/Apps/Hec/ContentModule/PublicationInfo.php:24)
at App\View\Components\Apps\Hec\ContentModule\PublicationInfo->setupProperties()
(/home/baldwin2/public_html/app/View/Components/BaseComponent.php:35)
at App\View\Components\BaseComponent->__construct(array('node' => object(Node)))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Component.php:102)
at Illuminate\View\Component::resolve(array('props' => array('node' => object(Node))))
(/home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php:16)
at require('/home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php', array('__env' => object(Factory), 'app' => object(Application), 'component' => 'apps.hec.content-module.publicationInfo', 'componentName' => 'dynamic-component', 'attributes' => object(ComponentAttributeBag), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php', array('__env' => object(Factory), 'app' => object(Application), 'component' => 'apps.hec.content-module.publicationInfo', 'componentName' => 'dynamic-component', 'attributes' => object(ComponentAttributeBag), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/storage/framework/views/6344528d284cb5035f07e1760cb6037ce9424c80.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'component' => 'apps.hec.content-module.publicationInfo', 'componentName' => 'dynamic-component', 'attributes' => object(ComponentAttributeBag), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:104)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php:30)
at require('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/d905fa8b420d31612f7ef11b6d9ed0298808434d.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/node.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'renderContainer' => true, 'renderContents' => true, 'classes' => array(), 'noPrint' => false, 'contentModuleAlias' => 'publicationInfo', 'contentModuleComponent' => 'apps.hec.content-module.publicationInfo', 'isAsyncNode' => false, 'templateNodeId' => 164, 'templateNodeAlias' => '', 'marginTop' => 'x0', 'marginBottom' => 'x05', 'componentName' => 'apps.hec.layout.node', 'attributes' => object(ComponentAttributeBag), 'propsForContentModule' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php:23)
at require('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ce9748c3ec34664f1f73abd5994e1eb8e1864d20.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/layout-group.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'groupCount' => 2, 'activateEzoic' => false, 'ezoicSidebarPlaceholderId' => null, 'horizontalLayoutClass' => 'gutterWithAds', 'id' => null, 'nodes' => object(Collection), 'showAdGutter' => true, 'componentName' => 'apps.hec.layout.layout-group', 'attributes' => object(ComponentAttributeBag), 'propsForNode' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php:24)
at require('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/249e502eef426f6952abe7dae89d273423d0776b.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/layout/body.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'layoutGroups' => object(Collection), 'ezoicPlaceholders_callback' => object(Closure), 'ezoicRequirePlaceholders' => false, 'componentName' => 'apps.hec.layout.body', 'attributes' => object(ComponentAttributeBag), 'propsForLayoutGroup' => object(Closure), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php:44)
at require('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/1d12eba598222038eb9f3160d1f5626250a07d0c.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/components/apps/hec/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'pageId' => 2022, 'chicoryEnabled' => '', 'recaptchaEnabled' => '', 'recaptchaSiteKey' => '6LcsMTMqAAAAAJMRXZIRYiotsPEZxDVAzyV_DAxl', 'turnstileEnabled' => '1', 'turnstileSiteKey' => '0x4AAAAAAA2RiTB5Oe966V1H', 'templateAlias' => 'article', 'componentName' => 'apps.hec.app', 'attributes' => object(ComponentAttributeBag), 'propsForHead' => object(InvokableComponentVariable), 'propsForBody' => object(InvokableComponentVariable), 'resolve' => object(Closure), 'flushCache' => object(InvokableComponentVariable), 'forgetFactory' => object(InvokableComponentVariable), 'forgetComponentsResolver' => object(InvokableComponentVariable), 'resolveComponentsUsing' => object(Closure), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:100)
at Illuminate\View\Factory->renderComponent()
(/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php:10)
at require('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:109)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110)
at Illuminate\Filesystem\Filesystem->getRequire('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/baldwin2/public_html/storage/framework/views/ac5a3e5dbc3fa25ab150c91ce9aa9195001e1215.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
at Illuminate\View\Engines\CompilerEngine->get('/home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'props' => array('page' => object(Page))))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:195)
at Illuminate\View\View->getContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:178)
at Illuminate\View\View->renderContents()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:147)
at Illuminate\View\View->render()
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:257)
at App\Models\Apps\Hec\ClientRequest::stringifyMixedContent(object(View), object(ResponseType))
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:241)
at App\Models\Apps\Hec\ClientRequest::processAndRespond(null, object(ResponseType), object(Closure))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:126)
at App\Http\Controllers\Apps\Hec\WebsiteController->_page(object(Request), object(Page))
(/home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php:109)
at App\Http\Controllers\Apps\Hec\WebsiteController->catchall(object(Request), '/blog/healthy-thanksgiving-desserts')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
at Illuminate\Routing\Controller->callAction('catchall', array(object(Request), 'pathname' => 'blog/healthy-thanksgiving-desserts'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
at Illuminate\Routing\ControllerDispatcher->dispatch(object(Route), object(WebsiteController), 'catchall')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260)
at Illuminate\Routing\Route->runController()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
at Illuminate\Routing\Route->run()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:798)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php:11)
at App\Http\Middleware\AdjustRedirectsMiddleware->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/app/Http/Middleware/Language.php:24)
at App\Http\Middleware\Language->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/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/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/baldwin2/public_html/app/Helpers/Utility.php:2902)
at App\Helpers\Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com')
(/home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php:296)
at App\Models\Apps\Hec\ClientRequest->rescan()
(/home/baldwin2/public_html/app/Jobs/Apps/Hec/ClientRequest/Rescan.php:31)
at App\Jobs\Apps\Hec\ClientRequest\Rescan->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(Rescan), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(Rescan), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(Rescan), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:128)
at Illuminate\Bus\Dispatcher->Illuminate\Bus\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php:132)
at Illuminate\Bus\Dispatcher->dispatchNow(object(Rescan), false)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:124)
at Illuminate\Queue\CallQueuedHandler->Illuminate\Queue\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:126)
at Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware(object(DatabaseJob), object(Rescan))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php:70)
at Illuminate\Queue\CallQueuedHandler->call(object(DatabaseJob), array('commandName' => 'App\\Jobs\\Apps\\Hec\\ClientRequest\\Rescan', 'command' => binary string))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php:98)
at Illuminate\Queue\Jobs\Job->fire()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:425)
at Illuminate\Queue\Worker->process('database', object(DatabaseJob), object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:375)
at Illuminate\Queue\Worker->runJob(object(DatabaseJob), 'database', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php:173)
at Illuminate\Queue\Worker->daemon('database', 'default', object(WorkerOptions))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:148)
at Illuminate\Queue\Console\WorkCommand->runWorker('database', 'default')
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php:131)
at Illuminate\Queue\Console\WorkCommand->handle()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure(object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod(object(Application), array(object(WorkCommand), 'handle'), object(Closure))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call(object(Application), array(object(WorkCommand), 'handle'), array(), null)
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
at Illuminate\Container\Container->call(array(object(WorkCommand), 'handle'))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:183)
at Illuminate\Console\Command->execute(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/symfony/console/Command/Command.php:326)
at Symfony\Component\Console\Command\Command->run(object(ArgvInput), object(OutputStyle))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Command.php:153)
at Illuminate\Console\Command->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:1070)
at Symfony\Component\Console\Application->doRunCommand(object(WorkCommand), object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:324)
at Symfony\Component\Console\Application->doRun(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/symfony/console/Application.php:175)
at Symfony\Component\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Console/Application.php:102)
at Illuminate\Console\Application->run(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:155)
at Illuminate\Foundation\Console\Kernel->handle(object(ArgvInput), object(ConsoleOutput))
(/home/baldwin2/public_html/artisan:37)
|