Symfony Exception

ErrorException

HTTP 500 Internal Server Error

file_get_contents(/home/lodyscom/public_html/composer.json): Failed to open stream: No such file or directory

Exception

ErrorException

Show exception properties
ErrorException {#1771
  #severity: E_WARNING
}
  1.     {
  2.         if (! is_null($this->namespace)) {
  3.             return $this->namespace;
  4.         }
  5.         $composer json_decode(file_get_contents($this->basePath('composer.json')), true);
  6.         foreach ((array) data_get($composer'autoload.psr-4') as $namespace => $path) {
  7.             foreach ((array) $path as $pathChoice) {
  8.                 if (realpath($this->path()) === realpath($this->basePath($pathChoice))) {
  9.                     return $this->namespace $namespace;
  1.      * @return callable
  2.      */
  3.     protected function forwardsTo($method)
  4.     {
  5.         return fn (...$arguments) => static::$app
  6.             $this->{$method}(...$arguments)
  7.             : false;
  8.     }
  9.     /**
  10.      * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(2, 'file_get_contents(/home/lodyscom/public_html/composer.json): Failed to open stream: No such file or directory', '/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php', 1707)
  1.     {
  2.         if (! is_null($this->namespace)) {
  3.             return $this->namespace;
  4.         }
  5.         $composer json_decode(file_get_contents($this->basePath('composer.json')), true);
  6.         foreach ((array) data_get($composer'autoload.psr-4') as $namespace => $path) {
  7.             foreach ((array) $path as $pathChoice) {
  8.                 if (realpath($this->path()) === realpath($this->basePath($pathChoice))) {
  9.                     return $this->namespace $namespace;
  1.      */
  2.     public function guessClassName(string $component)
  3.     {
  4.         $namespace Container::getInstance()
  5.             ->make(Application::class)
  6.             ->getNamespace();
  7.         $class $this->formatClassName($component);
  8.         return $namespace.'View\\Components\\'.$class;
  9.     }
  1.         if ($class $this->findClassByComponent($component)) {
  2.             return $class;
  3.         }
  4.         if (class_exists($class $this->guessClassName($component))) {
  5.             return $class;
  6.         }
  7.         if (class_exists($class $class.'\\'.Str::afterLast($class'\\'))) {
  8.             return $class;
  1.      *
  2.      * @throws \InvalidArgumentException
  3.      */
  4.     protected function componentString(string $component, array $attributes)
  5.     {
  6.         $class $this->componentClass($component);
  7.         [$data$attributes] = $this->partitionDataAndAttributes($class$attributes);
  8.         $data $data->mapWithKeys(function ($value$key) {
  9.             return [Str::camel($key) => $value];
  1.         return preg_replace_callback($pattern, function (array $matches) {
  2.             $this->boundAttributes = [];
  3.             $attributes $this->getAttributesFromAttributeString($matches['attributes']);
  4.             return $this->componentString($matches[1], $attributes)."\n@endComponentClass##END-COMPONENT-CLASS##";
  5.         }, $value);
  6.     }
  7.     /**
  8.      * Compile the Blade component string for the given component and attributes.
ComponentTagCompiler->Illuminate\View\Compilers\{closure}(array('<x-laravel-exceptions-renderer::navigation :$exception />', 'laravel-exceptions-renderer::navigation', 'attributes' => ' :$exception ', ' :$exception ', '', '', ':$', 'exception'))
  1.                     \s*
  2.                 )
  3.             \/>
  4.         /x";
  5.         return preg_replace_callback($pattern, function (array $matches) {
  6.             $this->boundAttributes = [];
  7.             $attributes $this->getAttributesFromAttributeString($matches['attributes']);
  8.             return $this->componentString($matches[1], $attributes)."\n@endComponentClass##END-COMPONENT-CLASS##";
  1.      *
  2.      * @throws \InvalidArgumentException
  3.      */
  4.     public function compileTags(string $value)
  5.     {
  6.         $value $this->compileSelfClosingTags($value);
  7.         $value $this->compileOpeningTags($value);
  8.         $value $this->compileClosingTags($value);
  9.         return $value;
  10.     }
  1.      */
  2.     public function compile(string $value)
  3.     {
  4.         $value $this->compileSlots($value);
  5.         return $this->compileTags($value);
  6.     }
  7.     /**
  8.      * Compile the tags within the given string.
  9.      *
  1.             return $value;
  2.         }
  3.         return (new ComponentTagCompiler(
  4.             $this->classComponentAliases$this->classComponentNamespaces$this
  5.         ))->compile($value);
  6.     }
  7.     /**
  8.      * Replace the raw placeholders with the original code stored in the raw blocks.
  9.      *
  1.         $value $this->storeUncompiledBlocks($value);
  2.         // First we will compile the Blade component tags. This is a precompile style
  3.         // step which compiles the component Blade tags into @component directives
  4.         // that may be used by Blade. Then we should call any other precompilers.
  5.         $value $this->compileComponentTags(
  6.             $this->compileComments($value)
  7.         );
  8.         foreach ($this->precompilers as $precompiler) {
  9.             $value $precompiler($value);
  1.         if ($path) {
  2.             $this->setPath($path);
  3.         }
  4.         if (! is_null($this->cachePath)) {
  5.             $contents $this->compileString($this->files->get($this->getPath()));
  6.             if (! empty($this->getPath())) {
  7.                 $contents $this->appendFilePath($contents);
  8.             }
  1.         // If this given view has expired, which means it has simply been edited since
  2.         // it was last compiled, we will re-compile the views so we can evaluate a
  3.         // fresh copy of the view. We'll pass the compiler the path of the view.
  4.         if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) {
  5.             $this->compiler->compile($path);
  6.         }
  7.         // Once we have the path to the compiled file, we will evaluate the paths with
  8.         // typical PHP just like any other templates. We also keep a stack of views
  9.         // which have been rendered for right exception messages to be generated.
  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.             $this->htmlErrorRenderer->render($throwable),
  2.         );
  3.         return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  4.             'exception' => new Exception($flattenException$request$this->listener$this->basePath),
  5.         ])->render();
  6.     }
  7.     /**
  8.      * Get the renderer's CSS content.
  9.      *
  1.         try {
  2.             if (config('app.debug')) {
  3.                 if (app()->has(ExceptionRenderer::class)) {
  4.                     return $this->renderExceptionWithCustomRenderer($e);
  5.                 } elseif ($this->container->bound(Renderer::class)) {
  6.                     return $this->container->make(Renderer::class)->render(request(), $e);
  7.                 }
  8.             }
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         } catch (Throwable $e) {
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage(), $e);
  10.         }
  1.      */
  2.     protected function renderExceptionResponse($requestThrowable $e)
  3.     {
  4.         return $this->shouldReturnJson($request$e)
  5.                     ? $this->prepareJsonResponse($request$e)
  6.                     : $this->prepareResponse($request$e);
  7.     }
  8.     /**
  9.      * Convert an authentication exception into a response.
  10.      *
  1.         return $this->finalizeRenderedResponse($request, match (true) {
  2.             $e instanceof HttpResponseException => $e->getResponse(),
  3.             $e instanceof AuthenticationException => $this->unauthenticated($request$e),
  4.             $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e$request),
  5.             default => $this->renderExceptionResponse($request$e),
  6.         }, $e);
  7.     }
  8.     /**
  9.      * Prepare the final, rendered response to be returned to the browser.
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.             }
  2.             throw $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.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  1.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.             ->send($request)
  4.             ->through($middleware)
  5.             ->then(fn ($request) => $this->prepareResponse(
  6.                 $request$route->run()
  7.             ));
  8.     }
  9.     /**
  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.      */
  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.      */
  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('The POST data is too large.');
  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.         $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.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  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/lodyscom/public_html/public/index.php (line 52)
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response tap($kernel->handle(
  4.     $request Request::capture()
  5. ))->send();
  6. $kernel->terminate($request$response);

Stack Trace

ErrorException
ErrorException:
file_get_contents(/home/lodyscom/public_html/composer.json): Failed to open stream: No such file or directory

  at /home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1707
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'file_get_contents(/home/lodyscom/public_html/composer.json): Failed to open stream: No such file or directory', '/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php', 1707)
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(2, 'file_get_contents(/home/lodyscom/public_html/composer.json): Failed to open stream: No such file or directory', '/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php', 1707)
  at file_get_contents('/home/lodyscom/public_html/composer.json')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1707)
  at Illuminate\Foundation\Application->getNamespace()
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:425)
  at Illuminate\View\Compilers\ComponentTagCompiler->guessClassName('laravel-exceptions-renderer::navigation')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:299)
  at Illuminate\View\Compilers\ComponentTagCompiler->componentClass('laravel-exceptions-renderer::navigation')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:236)
  at Illuminate\View\Compilers\ComponentTagCompiler->componentString('laravel-exceptions-renderer::navigation', array('exception' => '$exception'))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:221)
  at Illuminate\View\Compilers\ComponentTagCompiler->Illuminate\View\Compilers\{closure}(array('<x-laravel-exceptions-renderer::navigation :$exception />', 'laravel-exceptions-renderer::navigation', 'attributes' => ' :$exception ', ' :$exception ', '', '', ':$', 'exception'))
  at preg_replace_callback('/            <                \\s*                x[-\\:]([\\w\\-\\:\\.]*)                \\s*                (?<attributes>                    (?:                        \\s+                        (?:                            (?:                                @(?:class)(\\( (?: (?>[^()]+) | (?-1) )* \\))                            )                            |                            (?:                                @(?:style)(\\( (?: (?>[^()]+) | (?-1) )* \\))                            )                            |                            (?:                                \\{\\{\\s*\\$attributes(?:[^}]+?)?\\s*\\}\\}                            )                            |                            (?:                                (\\:\\$)(\\w+)                            )                            |                            (?:                                [\\w\\-:.@%]+                                (                                    =                                    (?:                                        \\"[^\\"]*\\"                                        |                                        \\\'[^\\\']*\\\'                                        |                                        [^\\\'\\"=<>]+                                    )                                )?                            )                        )                    )*                    \\s*                )            \\/>        /x', object(Closure), '<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:216)
  at Illuminate\View\Compilers\ComponentTagCompiler->compileSelfClosingTags('<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:90)
  at Illuminate\View\Compilers\ComponentTagCompiler->compileTags('<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:77)
  at Illuminate\View\Compilers\ComponentTagCompiler->compile('<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php:440)
  at Illuminate\View\Compilers\BladeCompiler->compileComponentTags('<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php:272)
  at Illuminate\View\Compilers\BladeCompiler->compileString('<x-laravel-exceptions-renderer::layout :$exception>    <div class="renderer container mx-auto lg:px-8">        <x-laravel-exceptions-renderer::navigation :$exception />        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <x-laravel-exceptions-renderer::header :$exception />                <x-laravel-exceptions-renderer::trace-and-editor :$exception />                <x-laravel-exceptions-renderer::context :$exception />            </div>        </main>    </div></x-laravel-exceptions-renderer::layout>')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php:186)
  at Illuminate\View\Compilers\BladeCompiler->compile('/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php')
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:67)
  at Illuminate\View\Engines\CompilerEngine->get('/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), 'exception' => object(Exception)))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:209)
  at Illuminate\View\View->getContents()
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:192)
  at Illuminate\View\View->renderContents()
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:161)
  at Illuminate\View\View->render()
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:95)
  at Illuminate\Foundation\Exceptions\Renderer\Renderer->render(object(Request), object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:847)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:828)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:807)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:706)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:594)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(InvalidArgumentException))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:214)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:51)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:88)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:75)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:807)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:786)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:750)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:739)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:201)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:170)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/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/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/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/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:110)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/lodyscom/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:145)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/lodyscom/public_html/public/index.php:52)