Symfony Exception

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)

Exceptions 7

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#7702
  #severity: E_ERROR
}
  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

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)

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

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)

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?>
  9. <?php $component $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb?>
  10. <?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

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)

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?>
  9. <?php $component $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1?>
  10. <?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?>
  9. <?php $component $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb?>
  10. <?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

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)

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?>
  9. <?php $component $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d?>
  10. <?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?>
  9. <?php $component $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1?>
  10. <?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?>
  9. <?php $component $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb?>
  10. <?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

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)

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['props' => $propsForContentModule()]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?>
  9. <?php $component $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d?>
  10. <?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?>
  9. <?php $component $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1?>
  10. <?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?>
  9. <?php $component $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb?>
  10. <?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

TypeError

App\Services\Apps\Hec\WebsiteService::getParameterValue(): Return value must be of type App\Models\CMS\Website\Value, null returned

  1.         return $portableValue;
  2.     }
  3.     public function getParameterValue(Page\Node $nodestring $alias): Value {
  4.         return $node->getParameter($alias)->getActiveValue($this->page$this->getMappableNodes());
  5.     }
  6.     public function getMagicVars(): array {
  7.         $magicVars = [];
WebsiteService->getParameterValue(object(Node), 'content') in /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php (line 237)
  1.     public function getParameterData(Page\Node $nodestring $alias): mixed {
  2.         return $this->getParameterPortableValue($node$alias)->data;
  3.     }
  4.     public function getParameterPortableValue(Page\Node $nodestring $alias): Value\PortableValue {
  5.         $portableValue $this->getParameterValue($node$alias)->getData($this->contentAuthorization$this->page$this->getMappableNodes());
  6.         if(is_string($portableValue->data))
  7.             $portableValue->data app(WebsiteService::class)->interceptStringVariables($portableValue->datatrue);
  8.         return $portableValue;
WebsiteService->getParameterPortableValue(object(Node), 'content') in /home/baldwin2/public_html/app/Services/Apps/Hec/WebsiteService.php (line 233)
  1.         return $pageData;
  2.     }*/
  3.     public function getParameterData(Page\Node $nodestring $alias): mixed {
  4.         return $this->getParameterPortableValue($node$alias)->data;
  5.     }
  6.     public function getParameterPortableValue(Page\Node $nodestring $alias): Value\PortableValue {
  7.         $portableValue $this->getParameterValue($node$alias)->getData($this->contentAuthorization$this->page$this->getMappableNodes());
WebsiteService->getParameterData(object(Node), 'content') in /home/baldwin2/public_html/app/View/Components/Apps/Hec/ContentModule.php (line 14)
  1. abstract class ContentModule extends BaseComponent {
  2.     protected Node $node;
  3.     protected function getParameterData(string $alias): mixed {
  4.         return app(WebsiteService::class)->getParameterData($this->node$alias);
  5.     }
  6.     protected function getParameterPortableValue(string $alias): mixed {
  7.         return app(WebsiteService::class)->getParameterPortableValue($this->node$alias);
  8.     }
  1.     public bool $showEditorialReviewer;
  2.     public bool $showMedicalReviewer;
  3.     public bool $showDateUpdated;
  4.     protected function setupProperties(): array {
  5.         $itemVersion $this->getParameterData('content');
  6.         $page $itemVersion $itemVersion->page app(WebsiteService::class)->getPage();
  7.         $editorialReviewer $itemVersion?->editorialReviewer?->label;
  8.         $medicalReviewer $itemVersion?->medicalReviewer?->label;
  9.         $datePublished $page->publish_start->format('n/j/Y');
PublicationInfo->setupProperties() in /home/baldwin2/public_html/app/View/Components/BaseComponent.php (line 35)
  1.         foreach(array_diff($this->requiredInputs$foundInputs) as $missingInput) {
  2.             throw new \Exception("Required input '$missingInput' not found.");
  3.         }
  4.         foreach($this->setupProperties() as $prop => $value) {
  5.             $this->$prop $value;
  6.         }
  7.     }
  8.     public function render(): View|Htmlable|\Closure|string {
  1.         $parameters = static::extractConstructorParameters();
  2.         $dataKeys array_keys($data);
  3.         if (empty(array_diff($parameters$dataKeys))) {
  4.             return new static(...array_intersect_key($dataarray_flip($parameters)));
  5.         }
  6.         return Container::getInstance()->make(static::class, $data);
  7.     }
Component::resolve(array('props' => array('node' => object(Node)))) in /home/baldwin2/public_html/storage/framework/views/a2f97b1e3ba00c26c2be7403e175cf751d02d48b.php (line 16)
  1. <?php foreach ($attributes as $__key => $__value) {
  2.     if (array_key_exists($__key$__defined_vars)) unset($$__key);
  3. ?>
  4. <?php unset($__defined_vars); ?>
  5. <?php if (isset($component)) { $__componentOriginaleb2c5208921723a278c0b79a61d14045e17e7aa4 $component; } ?>
  6. <?php $component App\View\Components\Apps\Hec\ContentModule\PublicationInfo::resolve(['props' => $props] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
  7. <?php $component->withName('apps.hec.content-module.publicationInfo'); ?>
  8. <?php if ($component->shouldRender()): ?>
  9. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  10. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\ContentModule\PublicationInfo::class))->getConstructor()): ?>
  11. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['props' => $propsForContentModule()]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Node::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d)): ?>
  9. <?php $component $__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d?>
  10. <?php unset($__componentOriginal8cdc84c76e8fdcf281ea30e24163ac3fded7e20d); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\LayoutGroup::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1)): ?>
  9. <?php $component $__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1?>
  10. <?php unset($__componentOriginalf8fa0c395735f8fe289d271500360dc4659b8de1); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\Layout\Body::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb)): ?>
  9. <?php $component $__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb?>
  10. <?php unset($__componentOriginal77bd4cfbcffdf0b29d3ca23b6869d4ceaf762feb); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Apps\Hec\App::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes([]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09)): ?>
  9. <?php $component $__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09?>
  10. <?php unset($__componentOriginal90a4d457e774d1fb09aafb5108145dccbf77df09); ?>
  11. <?php endif; ?><?php /**PATH /home/baldwin2/public_html/resources/views/Apps/Hec/hec.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(?callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.     protected static function stringifyMixedContent(mixed $contentResponseType $responseType): string {
  2.         if(is_callable($content))
  3.             $content $content();
  4.         if(is_a($contentView::class))
  5.             $content $content->render();
  6.         if($responseType === ResponseType::JSON)
  7.             $content json_encode($content);
  8.         if(!is_string($content))
ClientRequest::stringifyMixedContent(object(View), object(ResponseType)) in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 241)
  1.         /** If the request is from the CDN and we have non-stale cache, serve it */
  2.         if(app(WebsiteService::class)->isRequestFromBunny() && $clientRequest?->hasFreshCache())
  3.             return $clientRequest->getCachedResponse();
  4.         /** Get fresh copy of content */
  5.         $content self::stringifyMixedContent($content$responseType);
  6.         /** Update our local cache, if we were provided a ClientRequest */
  7.         $clientRequest?->processContent($content);
  8.         /** serve the fresh response */
ClientRequest::processAndRespond(null, object(ResponseType), object(Closure)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 126)
  1.                 return view(WebsiteService::getView('hec'), [
  2.                     'props' => [
  3.                         'page' => $page
  4.                     ]
  5.                 ]);
  6.             }
  7.         );
  8.     }
  9.     public function sitemap() {
  10.         $ttl 60 60 8;
WebsiteController->_page(object(Request), object(Page)) in /home/baldwin2/public_html/app/Http/Controllers/Apps/Hec/WebsiteController.php (line 109)
  1.             }
  2.             abort(404);
  3.         }
  4.         return $this->_page($request$page);
  5.     }
  6.     protected function _page(Request $requestPage $page) {
  7.         $this->clientRequest $this->website->isRequestFromBunny() ? $this->website->logRequestFromBunny(RequestType::PageResponseType::TextHtml$page) : null;
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  2.      */
  3.     protected function runController()
  4.     {
  5.         return $this->controllerDispatcher()->dispatch(
  6.             $this$this->getController(), $this->getControllerMethod()
  7.         );
  8.     }
  9.     /**
  10.      * Get the controller instance for the route.
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/AdjustRedirectsMiddleware.php (line 11)
  1. use Closure;
  2. use Illuminate\Http\RedirectResponse;
  3. class AdjustRedirectsMiddleware {
  4.     public function handle($requestClosure $next) {
  5.         $response $next($request);
  6.         if($response instanceof RedirectResponse) {
  7.             $modifiedUrl $this->modifyUrl($response->getTargetUrl());
  8.             if($modifiedUrl !== $response->getTargetUrl())
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/baldwin2/public_html/app/Http/Middleware/Language.php (line 24)
  1.             App::setLocale(Session::get('applocale'));
  2.         }
  3.         else { // This is optional as Laravel will automatically set the fallback language if there is none specified
  4.             App::setLocale(Config::get('app.fallback_locale'));
  5.         }
  6.         return $next($request);
  7.     }
  8. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->debugbar->boot();
  9.         try {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/baldwin2/public_html/app/Helpers/Utility.php (line 2902)
  1.         /** Replace the current request with the new one */
  2.         app()->instance('request'$request);
  3.         /** Dispatch the request through the HTTP kernel */
  4.         $kernel app(Kernel::class);
  5.         $response $kernel->handle($request);
  6.         /** Optionally terminate the kernel (not necessary if not running in a real HTTP environment) */
  7.         $kernel->terminate($request$response);
  8.         /** Return the response content or the response itself */
Utility::runControllerFromUrl(object(HttpMethod), '/blog/healthy-thanksgiving-desserts', array(), 'origin.healthecooks.com') in /home/baldwin2/public_html/app/Models/Apps/Hec/ClientRequest.php (line 296)
  1.         $this->processContent(
  2.             newContentUtility::runControllerFromUrl(
  3.                 methodHttpMethod::GET,
  4.                 path$this->getPathname(),
  5.                 parameters$this->getQueryParameters(),
  6.                 domainconfig('hec.v2.hosts.origin')
  7.             )->getContent()
  8.         );
  9.         $this->markRescan(false);
  10.     }
  1.             return;
  2.         if($this->clientRequest->shouldPurge())
  3.             ClientRequest::purgeAndDelete([$this->clientRequest], 2);
  4.         else
  5.             $this->clientRequest->rescan();
  6.     }
  7. }
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.             };
  2.         } else {
  3.             $callback = function ($command) {
  4.                 $method method_exists($command'handle') ? 'handle' '__invoke';
  5.                 return $this->container->call([$command$method]);
  6.             };
  7.         }
  8.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  9.     }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 return $this->container->call([$command$method]);
  2.             };
  3.         }
  4.         return $this->pipeline->send($command)->through($this->pipes)->then($callback);
  5.     }
  6.     /**
  7.      * Attempt to find the batch with the given ID.
  8.      *
  1.         return (new Pipeline($this->container))->send($command)
  2.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  3.                 ->then(function ($command) use ($job) {
  4.                     return $this->dispatcher->dispatchNow(
  5.                         $command$this->resolveHandler($job$command)
  6.                     );
  7.                 });
  8.     }
  9.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                 ->through(array_merge(method_exists($command'middleware') ? $command->middleware() : [], $command->middleware ?? []))
  2.                 ->then(function ($command) use ($job) {
  3.                     return $this->dispatcher->dispatchNow(
  4.                         $command$this->resolveHandler($job$command)
  5.                     );
  6.                 });
  7.     }
  8.     /**
  9.      * Resolve the handler for the given command.
  10.      *
  1.         if ($command instanceof ShouldBeUniqueUntilProcessing) {
  2.             $this->ensureUniqueJobLockIsReleased($command);
  3.         }
  4.         $this->dispatchThroughMiddleware($job$command);
  5.         if (! $job->isReleased() && ! $command instanceof ShouldBeUniqueUntilProcessing) {
  6.             $this->ensureUniqueJobLockIsReleased($command);
  7.         }
  1.     {
  2.         $payload $this->payload();
  3.         [$class$method] = JobName::parse($payload['job']);
  4.         ($this->instance $this->resolve($class))->{$method}($this$payload['data']);
  5.     }
  6.     /**
  7.      * Delete the job from the queue.
  8.      *
  1.             }
  2.             // Here we will fire off the job and let it process. We will catch any exceptions, so
  3.             // they can be reported to the developer's logs, etc. Once the job is finished the
  4.             // proper events will be fired to let any listeners know this job has completed.
  5.             $job->fire();
  6.             $this->raiseAfterJobEvent($connectionName$job);
  7.         } catch (Throwable $e) {
  8.             $this->handleJobException($connectionName$job$options$e);
  9.         }
  1.      * @return void
  2.      */
  3.     protected function runJob($job$connectionNameWorkerOptions $options)
  4.     {
  5.         try {
  6.             return $this->process($connectionName$job$options);
  7.         } catch (Throwable $e) {
  8.             $this->exceptions->report($e);
  9.             $this->stopWorkerIfLostConnection($e);
  10.         }
  1.             // fire off this job for processing. Otherwise, we will need to sleep the
  2.             // worker so no more jobs are processed until they should be processed.
  3.             if ($job) {
  4.                 $jobsProcessed++;
  5.                 $this->runJob($job$connectionName$options);
  6.                 if ($options->rest 0) {
  7.                     $this->sleep($options->rest);
  8.                 }
  9.             } else {
  1.     {
  2.         return $this->worker
  3.             ->setName($this->option('name'))
  4.             ->setCache($this->cache)
  5.             ->{$this->option('once') ? 'runNextJob' 'daemon'}(
  6.                 $connection$queue$this->gatherWorkerOptions()
  7.             );
  8.     }
  9.     /**
  10.      * Gather all of the queue worker options as a single object.
  1.                 sprintf('Processing jobs from the [%s] %s.'$queuestr('queue')->plural(explode(','$queue)))
  2.             );
  3.         }
  4.         return $this->runWorker(
  5.             $connection$queue
  6.         );
  7.     }
  8.     /**
  9.      * Run the worker instance.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.         }
  2.         $method method_exists($this'handle') ? 'handle' '__invoke';
  3.         try {
  4.             return (int) $this->laravel->call([$this$method]);
  5.         } finally {
  6.             if ($this instanceof Isolatable && $this->option('isolated') !== false) {
  7.                 $this->commandIsolationMutex()->forget($this);
  8.             }
  9.         }
  1.         $input->validate();
  2.         if ($this->code) {
  3.             $statusCode = ($this->code)($input$output);
  4.         } else {
  5.             $statusCode $this->execute($input$output);
  6.             if (!\is_int($statusCode)) {
  7.                 throw new \TypeError(\sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, get_debug_type($statusCode)));
  8.             }
  9.         }
  1.         $this->components $this->laravel->make(Factory::class, ['output' => $this->output]);
  2.         try {
  3.             return parent::run(
  4.                 $this->input $input$this->output
  5.             );
  6.         } finally {
  7.             $this->untrap();
  8.         }
  9.     }
  1.                 });
  2.             }
  3.         }
  4.         if (null === $this->dispatcher) {
  5.             return $command->run($input$output);
  6.         }
  7.         // bind before the console.command event, so the listeners have access to input options/arguments
  8.         try {
  9.             $command->mergeApplicationDefinition();
  1.         if ($command instanceof LazyCommand) {
  2.             $command $command->getCommand();
  3.         }
  4.         $this->runningCommand $command;
  5.         $exitCode $this->doRunCommand($command$input$output);
  6.         $this->runningCommand null;
  7.         return $exitCode;
  8.     }
  1.         }
  2.         try {
  3.             $this->configureIO($input$output);
  4.             $exitCode $this->doRun($input$output);
  5.         } catch (\Throwable $e) {
  6.             if ($e instanceof \Exception && !$this->catchExceptions) {
  7.                 throw $e;
  8.             }
  9.             if (!$e instanceof \Exception && !$this->catchErrors) {
  1.             new CommandStarting(
  2.                 $commandName$input$output $output ?: new BufferedConsoleOutput
  3.             )
  4.         );
  5.         $exitCode parent::run($input$output);
  6.         $this->events->dispatch(
  7.             new CommandFinished($commandName$input$output$exitCode)
  8.         );
  1.                 $this->bootstrapWithoutBootingProviders();
  2.             }
  3.             $this->bootstrap();
  4.             return $this->getArtisan()->run($input$output);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $this->renderException($output$e);
Kernel->handle(object(ArgvInput), object(ConsoleOutput)) in /home/baldwin2/public_html/artisan (line 37)
  1. $kernel $app->make(Illuminate\Contracts\Console\Kernel::class);
  2. $status $kernel->handle(
  3.     $input = new Symfony\Component\Console\Input\ArgvInput,
  4.     new Symfony\Component\Console\Output\ConsoleOutput
  5. );
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Shutdown The Application
  9. |--------------------------------------------------------------------------

Stack Traces 7

[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)