ErrorException {#1771 #severity: E_WARNING }
{ if (! is_null($this->namespace)) { return $this->namespace; } $composer = json_decode(file_get_contents($this->basePath('composer.json')), true); foreach ((array) data_get($composer, 'autoload.psr-4') as $namespace => $path) { foreach ((array) $path as $pathChoice) { if (realpath($this->path()) === realpath($this->basePath($pathChoice))) { return $this->namespace = $namespace; * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } /** * Determine if the error level is a deprecation. { if (! is_null($this->namespace)) { return $this->namespace; } $composer = json_decode(file_get_contents($this->basePath('composer.json')), true); foreach ((array) data_get($composer, 'autoload.psr-4') as $namespace => $path) { foreach ((array) $path as $pathChoice) { if (realpath($this->path()) === realpath($this->basePath($pathChoice))) { return $this->namespace = $namespace; */ public function guessClassName(string $component) { $namespace = Container::getInstance() ->make(Application::class) ->getNamespace(); $class = $this->formatClassName($component); return $namespace.'View\\Components\\'.$class; } if ($class = $this->findClassByComponent($component)) { return $class; } if (class_exists($class = $this->guessClassName($component))) { return $class; } if (class_exists($class = $class.'\\'.Str::afterLast($class, '\\'))) { return $class; * * @throws \InvalidArgumentException */ protected function componentString(string $component, array $attributes) { $class = $this->componentClass($component); [$data, $attributes] = $this->partitionDataAndAttributes($class, $attributes); $data = $data->mapWithKeys(function ($value, $key) { return [Str::camel($key) => $value]; return preg_replace_callback($pattern, function (array $matches) { $this->boundAttributes = []; $attributes = $this->getAttributesFromAttributeString($matches['attributes']); return $this->componentString($matches[1], $attributes)."\n@endComponentClass##END-COMPONENT-CLASS##"; }, $value); } /** * Compile the Blade component string for the given component and attributes. \s* ) \/> /x"; return preg_replace_callback($pattern, function (array $matches) { $this->boundAttributes = []; $attributes = $this->getAttributesFromAttributeString($matches['attributes']); return $this->componentString($matches[1], $attributes)."\n@endComponentClass##END-COMPONENT-CLASS##"; * * @throws \InvalidArgumentException */ public function compileTags(string $value) { $value = $this->compileSelfClosingTags($value); $value = $this->compileOpeningTags($value); $value = $this->compileClosingTags($value); return $value; } */ public function compile(string $value) { $value = $this->compileSlots($value); return $this->compileTags($value); } /** * Compile the tags within the given string. * return $value; } return (new ComponentTagCompiler( $this->classComponentAliases, $this->classComponentNamespaces, $this ))->compile($value); } /** * Replace the raw placeholders with the original code stored in the raw blocks. * $value = $this->storeUncompiledBlocks($value); // First we will compile the Blade component tags. This is a precompile style // step which compiles the component Blade tags into @component directives // that may be used by Blade. Then we should call any other precompilers. $value = $this->compileComponentTags( $this->compileComments($value) ); foreach ($this->precompilers as $precompiler) { $value = $precompiler($value); if ($path) { $this->setPath($path); } if (! is_null($this->cachePath)) { $contents = $this->compileString($this->files->get($this->getPath())); if (! empty($this->getPath())) { $contents = $this->appendFilePath($contents); } // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when $this->htmlErrorRenderer->render($throwable), ); return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 'exception' => new Exception($flattenException, $request, $this->listener, $this->basePath), ])->render(); } /** * Get the renderer's CSS content. * try { if (config('app.debug')) { if (app()->has(ExceptionRenderer::class)) { return $this->renderExceptionWithCustomRenderer($e); } elseif ($this->container->bound(Renderer::class)) { return $this->container->make(Renderer::class)->render(request(), $e); } } return $this->renderExceptionWithSymfony($e, config('app.debug')); } catch (Throwable $e) { * @return \Symfony\Component\HttpFoundation\Response */ protected function convertExceptionToResponse(Throwable $e) { return new SymfonyResponse( $this->renderExceptionContent($e), $this->isHttpException($e) ? $e->getStatusCode() : 500, $this->isHttpException($e) ? $e->getHeaders() : [] ); } * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse */ protected function prepareResponse($request, Throwable $e) { if (! $this->isHttpException($e) && config('app.debug')) { return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request); } if (! $this->isHttpException($e)) { $e = new HttpException(500, $e->getMessage(), $e); } */ protected function renderExceptionResponse($request, Throwable $e) { return $this->shouldReturnJson($request, $e) ? $this->prepareJsonResponse($request, $e) : $this->prepareResponse($request, $e); } /** * Convert an authentication exception into a response. * return $this->finalizeRenderedResponse($request, match (true) { $e instanceof HttpResponseException => $e->getResponse(), $e instanceof AuthenticationException => $this->unauthenticated($request, $e), $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request), default => $this->renderExceptionResponse($request, $e), }, $e); } /** * Prepare the final, rendered response to be returned to the browser. $handler = $this->container->make(ExceptionHandler::class); $handler->report($e); $response = $handler->render($passable, $e); if (is_object($response) && method_exists($response, 'withException')) { $response->withException($e); } ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } } throw $exception; } return $next($request); }} // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. return $next($request); }} // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); $this->startSession($request, $session) ); $this->collectGarbage($session); $response = $next($request); $this->storeCurrentUrl($request, $session); $this->addCookieToResponse($response, $session); if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } return $this->handleStatefulRequest($request, $session, $next); } /** * Handle the given request within session state. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } /** * Decrypt the cookies on the request. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); try { return $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** $request->setRouteResolver(fn () => $route); $this->events->dispatch(new RouteMatched($route, $request)); return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } /** * Run the given route within a Stack "onion" instance. * @param \Illuminate\Http\Request $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } /** * Find the route matching a given request. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); try { return $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Kernel::class);
$response = tap($kernel->handle(
$request = Request::capture()
))->send();
$kernel->terminate($request, $response);
|
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)
|