* @return $this */ public function useWritePdo() { $this->useWritePdo = true; return $this; } /** * Determine if the value is a query builder instance or a Closure. * * @param mixed $value * @return bool */ protected function isQueryable($value) { return $value instanceof self || $value instanceof EloquentBuilder || $value instanceof Relation || $value instanceof Closure; } /** * Clone the query. * * @return static */ public function clone() { return clone $this; } /** * Clone the query without the given properties. * * @return static */ public function cloneWithout(array $properties) { return tap($this->clone(), function ($clone) use ($properties) { foreach ($properties as $property) { $clone->{$property} = null; } }); } /** * Clone the query without the given bindings. * * @return static */ public function cloneWithoutBindings(array $except) { return tap($this->clone(), function ($clone) use ($except) { foreach ($except as $type) { $clone->bindings[$type] = []; } }); } /** * Dump the current SQL and bindings. * * @param mixed ...$args * @return $this */ public function dump(...$args) { dump( $this->toSql(), $this->getBindings(), ...$args, ); return $this; } /** * Dump the raw current SQL with embedded bindings. * * @return $this */ public function dumpRawSql() { dump($this->toRawSql()); return $this; } /** * Die and dump the current SQL and bindings. * * @return never */ public function dd() { dd($this->toSql(), $this->getBindings()); } /** * Die and dump the current SQL with embedded bindings. * * @return never */ public function ddRawSql() { dd($this->toRawSql()); } /** * Handle dynamic method calls into the method. * * @param string $method * @param array $parameters * @return mixed * * @throws \BadMethodCallException */ public function __call($method, $parameters) { if (static::hasMacro($method)) { return $this->macroCall($method, $parameters); } if (str_starts_with($method, 'where')) { return $this->dynamicWhere($method, $parameters); } static::throwBadMethodCallException($method); } } * @return $this */ public function useWritePdo() { $this->useWritePdo = true; return $this; } /** * Determine if the value is a query builder instance or a Closure. * * @param mixed $value * @return bool */ protected function isQueryable($value) { return $value instanceof self || $value instanceof EloquentBuilder || $value instanceof Relation || $value instanceof Closure; } /** * Clone the query. * * @return static */ public function clone() { return clone $this; } /** * Clone the query without the given properties. * * @return static */ public function cloneWithout(array $properties) { return tap($this->clone(), function ($clone) use ($properties) { foreach ($properties as $property) { $clone->{$property} = null; } }); } /** * Clone the query without the given bindings. * * @return static */ public function cloneWithoutBindings(array $except) { return tap($this->clone(), function ($clone) use ($except) { foreach ($except as $type) { $clone->bindings[$type] = []; } }); } /** * Dump the current SQL and bindings. * * @param mixed ...$args * @return $this */ public function dump(...$args) { dump( $this->toSql(), $this->getBindings(), ...$args, ); return $this; } /** * Dump the raw current SQL with embedded bindings. * * @return $this */ public function dumpRawSql() { dump($this->toRawSql()); return $this; } /** * Die and dump the current SQL and bindings. * * @return never */ public function dd() { dd($this->toSql(), $this->getBindings()); } /** * Die and dump the current SQL with embedded bindings. * * @return never */ public function ddRawSql() { dd($this->toRawSql()); } /** * Handle dynamic method calls into the method. * * @param string $method * @param array $parameters * @return mixed * * @throws \BadMethodCallException */ public function __call($method, $parameters) { if (static::hasMacro($method)) { return $this->macroCall($method, $parameters); } if (str_starts_with($method, 'where')) { return $this->dynamicWhere($method, $parameters); } static::throwBadMethodCallException($method); } }
Illuminate\View\ViewException {#1059 #severity: E_ERROR }
<?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']) // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when ])->render(); return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 'exception' => $exception, 'exceptionAsMarkdown' => $exceptionAsMarkdown, ])->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); } }; }; } * @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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($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); { $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); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * // 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 (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } 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); $normalizedPath = $trimmedPath; } } if ($normalizedPath === $path) { return $next($request); } $query = parse_url($requestUri, PHP_URL_QUERY); $normalizedUri = $normalizedPath . ($query ? '?' . $query : ''); // 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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); } */ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /**// Register the Composer autoloader...require __DIR__.'/vendor/autoload.php';$app = require_once __DIR__.'/bootstrap/app.php';$app->handleRequest(Request::capture());<?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']) // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?><?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?><?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when ])->render(); return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 'exception' => $exception, 'exceptionAsMarkdown' => $exceptionAsMarkdown, ])->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); } }; }; } * @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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($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); { $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); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * // 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 (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } 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); $normalizedPath = $trimmedPath; } } if ($normalizedPath === $path) { return $next($request); } $query = parse_url($requestUri, PHP_URL_QUERY); $normalizedUri = $normalizedPath . ($query ? '?' . $query : ''); // 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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); } */ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /**// Register the Composer autoloader...require __DIR__.'/vendor/autoload.php';$app = require_once __DIR__.'/bootstrap/app.php';$app->handleRequest(Request::capture());<?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']) // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal449787012edfba29f0e80f325065fad5)): ?><?php $attributes = $__attributesOriginal449787012edfba29f0e80f325065fad5; ?><?php unset($__attributesOriginal449787012edfba29f0e80f325065fad5); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?><?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?><?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when ])->render(); return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 'exception' => $exception, 'exceptionAsMarkdown' => $exceptionAsMarkdown, ])->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); } }; }; } * @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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($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); { $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); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * // 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 (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } 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); $normalizedPath = $trimmedPath; } } if ($normalizedPath === $path) { return $next($request); } $query = parse_url($requestUri, PHP_URL_QUERY); $normalizedUri = $normalizedPath . ($query ? '?' . $query : ''); // 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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); } */ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /**// Register the Composer autoloader...require __DIR__.'/vendor/autoload.php';$app = require_once __DIR__.'/bootstrap/app.php';$app->handleRequest(Request::capture());<?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']) return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal449787012edfba29f0e80f325065fad5)): ?><?php $attributes = $__attributesOriginal449787012edfba29f0e80f325065fad5; ?><?php unset($__attributesOriginal449787012edfba29f0e80f325065fad5); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when if ($view instanceof View) { return $view->with($data)->render(); } elseif ($view instanceof Htmlable) { return $view->toHtml(); } else { return $this->make($view, $data)->render(); } } finally { $this->currentComponentData = $previousComponentData; } }<?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?><?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?><?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?><?php endif; ?> $__data = $data; return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); return require $__path; })(); } throw new FileNotFoundException("File does not exist at path {$path}."); } // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } /** * Get the data bound to the view instance. * // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); $response = isset($callback) ? $callback($this, $contents) : null; // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when ])->render(); return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 'exception' => $exception, 'exceptionAsMarkdown' => $exceptionAsMarkdown, ])->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); } }; }; } * @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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($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); { $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); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * // 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 (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } 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); $normalizedPath = $trimmedPath; } } if ($normalizedPath === $path) { return $next($request); } $query = parse_url($requestUri, PHP_URL_QUERY); $normalizedUri = $normalizedPath . ($query ? '?' . $query : ''); // 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); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $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); } */ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /**// Register the Composer autoloader...require __DIR__.'/vendor/autoload.php';$app = require_once __DIR__.'/bootstrap/app.php';$app->handleRequest(Request::capture());|
[4/4]
ViewException
|
|---|
Illuminate\View\ViewException:
syntax error, unexpected end of file (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php) (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php) (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php)
at /home/srv83227/domains/asted.cloud/public_html/storage/framework/views/4152b4a132c5d138c0a225cc8dfb49be.php:74
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:59)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:100)
at Illuminate\Foundation\Exceptions\Renderer\Renderer->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:879)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:860)
at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:839)
at Illuminate\Foundation\Exceptions\Handler->prepareResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:738)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:626)
at Illuminate\Foundation\Exceptions\Handler->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
at Illuminate\Routing\Pipeline->handleException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:224)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74)
at Illuminate\Cookie\Middleware\EncryptCookies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821)
at Illuminate\Routing\Router->runRouteWithinStack()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:800)
at Illuminate\Routing\Router->runRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:764)
at Illuminate\Routing\Router->dispatchToRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753)
at Illuminate\Routing\Router->dispatch()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Http\Middleware\ValidatePostSize->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:48)
at Illuminate\Http\Middleware\HandleCors->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php:22)
at Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php:26)
at Illuminate\Http\Middleware\ValidatePathEncoding->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php:50)
at App\Http\Middleware\NormalizeRequestPath->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1220)
at Illuminate\Foundation\Application->handleRequest()
(/home/srv83227/domains/asted.cloud/public_html/index.php:18)
|
|
[3/4]
ViewException
|
|---|
Illuminate\View\ViewException:
syntax error, unexpected end of file (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php) (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php)
at /home/srv83227/domains/asted.cloud/public_html/storage/framework/views/4152b4a132c5d138c0a225cc8dfb49be.php:74
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:59)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103)
at Illuminate\View\Factory->renderComponent()
(/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php:155)
at require('/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php')
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:100)
at Illuminate\Foundation\Exceptions\Renderer\Renderer->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:879)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:860)
at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:839)
at Illuminate\Foundation\Exceptions\Handler->prepareResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:738)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:626)
at Illuminate\Foundation\Exceptions\Handler->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
at Illuminate\Routing\Pipeline->handleException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:224)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74)
at Illuminate\Cookie\Middleware\EncryptCookies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821)
at Illuminate\Routing\Router->runRouteWithinStack()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:800)
at Illuminate\Routing\Router->runRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:764)
at Illuminate\Routing\Router->dispatchToRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753)
at Illuminate\Routing\Router->dispatch()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Http\Middleware\ValidatePostSize->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:48)
at Illuminate\Http\Middleware\HandleCors->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php:22)
at Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php:26)
at Illuminate\Http\Middleware\ValidatePathEncoding->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php:50)
at App\Http\Middleware\NormalizeRequestPath->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1220)
at Illuminate\Foundation\Application->handleRequest()
(/home/srv83227/domains/asted.cloud/public_html/index.php:18)
|
|
[2/4]
ViewException
|
|---|
Illuminate\View\ViewException:
syntax error, unexpected end of file (View: /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/resources/exceptions/renderer/components/vendor-frames.blade.php)
at /home/srv83227/domains/asted.cloud/public_html/storage/framework/views/4152b4a132c5d138c0a225cc8dfb49be.php:74
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:59)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103)
at Illuminate\View\Factory->renderComponent()
(/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/1a497e07c116e84df11422423e60d9ae.php:71)
at require('/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/1a497e07c116e84df11422423e60d9ae.php')
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103)
at Illuminate\View\Factory->renderComponent()
(/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php:155)
at require('/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php')
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:100)
at Illuminate\Foundation\Exceptions\Renderer\Renderer->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:879)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:860)
at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:839)
at Illuminate\Foundation\Exceptions\Handler->prepareResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:738)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:626)
at Illuminate\Foundation\Exceptions\Handler->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
at Illuminate\Routing\Pipeline->handleException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:224)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74)
at Illuminate\Cookie\Middleware\EncryptCookies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821)
at Illuminate\Routing\Router->runRouteWithinStack()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:800)
at Illuminate\Routing\Router->runRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:764)
at Illuminate\Routing\Router->dispatchToRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753)
at Illuminate\Routing\Router->dispatch()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Http\Middleware\ValidatePostSize->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:48)
at Illuminate\Http\Middleware\HandleCors->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php:22)
at Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php:26)
at Illuminate\Http\Middleware\ValidatePathEncoding->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php:50)
at App\Http\Middleware\NormalizeRequestPath->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1220)
at Illuminate\Foundation\Application->handleRequest()
(/home/srv83227/domains/asted.cloud/public_html/index.php:18)
|
|
[1/4]
ParseError
|
|---|
ParseError:
syntax error, unexpected end of file
at /home/srv83227/domains/asted.cloud/public_html/storage/framework/views/4152b4a132c5d138c0a225cc8dfb49be.php:74
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103)
at Illuminate\View\Factory->renderComponent()
(/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/1a497e07c116e84df11422423e60d9ae.php:71)
at require('/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/1a497e07c116e84df11422423e60d9ae.php')
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103)
at Illuminate\View\Factory->renderComponent()
(/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php:155)
at require('/home/srv83227/domains/asted.cloud/public_html/storage/framework/views/306b791f283049c38102ca826877d9f4.php')
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76)
at Illuminate\View\Engines\CompilerEngine->get()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208)
at Illuminate\View\View->getContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191)
at Illuminate\View\View->renderContents()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160)
at Illuminate\View\View->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:100)
at Illuminate\Foundation\Exceptions\Renderer\Renderer->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:879)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:860)
at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:839)
at Illuminate\Foundation\Exceptions\Handler->prepareResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:738)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:626)
at Illuminate\Foundation\Exceptions\Handler->render()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
at Illuminate\Routing\Pipeline->handleException()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:224)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74)
at Illuminate\Cookie\Middleware\EncryptCookies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821)
at Illuminate\Routing\Router->runRouteWithinStack()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:800)
at Illuminate\Routing\Router->runRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:764)
at Illuminate\Routing\Router->dispatchToRoute()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753)
at Illuminate\Routing\Router->dispatch()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Http\Middleware\ValidatePostSize->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:48)
at Illuminate\Http\Middleware\HandleCors->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php:22)
at Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php:26)
at Illuminate\Http\Middleware\ValidatePathEncoding->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php:50)
at App\Http\Middleware\NormalizeRequestPath->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1220)
at Illuminate\Foundation\Application->handleRequest()
(/home/srv83227/domains/asted.cloud/public_html/index.php:18)
|