* @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); } } 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) (500 Internal Server Error)

Symfony Exception

ParseError ViewException ViewException ViewException

HTTP 500 Internal Server Error

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)

Exceptions 4

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#1059
  #severity: E_ERROR
}
  1. <?php if ($component->shouldRender()): ?>
  2. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  3. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  4. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  5. <?php endif; ?>
  6. <?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded'])
  1. // flush out any stray output that might get out before an error occurs or
  2. // an exception is thrown. This prevents any partial views from leaking.
  3. try {
  4. $this->files->getRequire($path, $data);
  5. } catch (Throwable $e) {
  6. $this->handleViewException($e, $obLevel);
  7. }
  8. return ltrim(ob_get_clean());
  9. }
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. ])->render();
  2. return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  3. 'exception' => $exception,
  4. 'exceptionAsMarkdown' => $exceptionAsMarkdown,
  5. ])->render();
  6. }
  7. /**
  8. * Get the renderer's CSS content.
  9. *
  1. try {
  2. if (config('app.debug')) {
  3. if (app()->has(ExceptionRenderer::class)) {
  4. return $this->renderExceptionWithCustomRenderer($e);
  5. } elseif ($this->container->bound(Renderer::class)) {
  6. return $this->container->make(Renderer::class)->render(request(), $e);
  7. }
  8. }
  9. return $this->renderExceptionWithSymfony($e, config('app.debug'));
  10. } catch (Throwable $e) {
  1. * @return \Symfony\Component\HttpFoundation\Response
  2. */
  3. protected function convertExceptionToResponse(Throwable $e)
  4. {
  5. return new SymfonyResponse(
  6. $this->renderExceptionContent($e),
  7. $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8. $this->isHttpException($e) ? $e->getHeaders() : []
  9. );
  10. }
  1. * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2. */
  3. protected function prepareResponse($request, Throwable $e)
  4. {
  5. if (! $this->isHttpException($e) && config('app.debug')) {
  6. return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7. }
  8. if (! $this->isHttpException($e)) {
  9. $e = new HttpException(500, $e->getMessage(), $e);
  10. }
  1. */
  2. protected function renderExceptionResponse($request, Throwable $e)
  3. {
  4. return $this->shouldReturnJson($request, $e)
  5. ? $this->prepareJsonResponse($request, $e)
  6. : $this->prepareResponse($request, $e);
  7. }
  8. /**
  9. * Convert an authentication exception into a response.
  10. *
  1. return $this->finalizeRenderedResponse($request, match (true) {
  2. $e instanceof HttpResponseException => $e->getResponse(),
  3. $e instanceof AuthenticationException => $this->unauthenticated($request, $e),
  4. $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request),
  5. default => $this->renderExceptionResponse($request, $e),
  6. }, $e);
  7. }
  8. /**
  9. * Prepare the final, rendered response to be returned to the browser.
  1. $handler = $this->container->make(ExceptionHandler::class);
  2. $handler->report($e);
  3. $response = $handler->render($passable, $e);
  4. if (is_object($response) && method_exists($response, 'withException')) {
  5. $response->withException($e);
  6. }
  1. ? $pipe->{$this->method}(...$parameters)
  2. : $pipe(...$parameters);
  3. return $this->handleCarry($carry);
  4. } catch (Throwable $e) {
  5. return $this->handleException($passable, $e);
  6. }
  7. };
  8. };
  9. }
  1. * @param \Closure $next
  2. * @return mixed
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. $response = $next($request);
  7. foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8. $response->headers->setCookie($cookie);
  9. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. return $this->encrypt($next($this->decrypt($request)));
  7. }
  8. /**
  9. * Decrypt the cookies on the request.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2. return (new Pipeline($this->container))
  3. ->send($request)
  4. ->through($middleware)
  5. ->then(fn ($request) => $this->prepareResponse(
  6. $request, $route->run()
  7. ));
  8. }
  9. /**
  1. $request->setRouteResolver(fn () => $route);
  2. $this->events->dispatch(new RouteMatched($route, $request));
  3. return $this->prepareResponse($request,
  4. $this->runRouteWithinStack($route, $request)
  5. );
  6. }
  7. /**
  8. * Run the given route within a Stack "onion" instance.
  1. * @param \Illuminate\Http\Request $request
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function dispatchToRoute(Request $request)
  5. {
  6. return $this->runRoute($request, $this->findRoute($request));
  7. }
  8. /**
  9. * Find the route matching a given request.
  10. *
  1. */
  2. public function dispatch(Request $request)
  3. {
  4. $this->currentRequest = $request;
  5. return $this->dispatchToRoute($request);
  6. }
  7. /**
  8. * Dispatch the request to a route and return the response.
  9. *
  1. protected function dispatchToRouter()
  2. {
  3. return function ($request) {
  4. $this->app->instance('request', $request);
  5. return $this->router->dispatch($request);
  6. };
  7. }
  8. /**
  9. * Call the terminate method on any terminable middleware.
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} (line 180)
  1. */
  2. protected function prepareDestination(Closure $destination)
  3. {
  4. return function ($passable) use ($destination) {
  5. try {
  6. return $destination($passable);
  7. } catch (Throwable $e) {
  8. return $this->handleException($passable, $e);
  9. }
  10. };
  11. }
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
  2. throw new PostTooLargeException('The POST data is too large.');
  3. }
  4. return $next($request);
  5. }
  6. /**
  7. * Determine the server 'post_max_size' as bytes.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. null,
  2. $this->getHeaders($data)
  3. );
  4. }
  5. return $next($request);
  6. }
  7. /**
  8. * Determine if the incoming request has a maintenance mode bypass cookie.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 48)
  1. * @return \Illuminate\Http\Response
  2. */
  3. public function handle($request, Closure $next)
  4. {
  5. if (! $this->hasMatchingPath($request)) {
  6. return $next($request);
  7. }
  8. $this->cors->setOptions($this->container['config']->get('cors', []));
  9. if ($this->cors->isPreflightRequest($request)) {
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 58)
  1. {
  2. $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3. $this->setTrustedProxyIpAddresses($request);
  4. return $next($request);
  5. }
  6. /**
  7. * Sets the trusted proxies on the request.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle(Request $request, Closure $next)
  5. {
  6. return $next($request);
  7. }
  8. /**
  9. * Invoke the deferred callbacks.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if (! mb_check_encoding($decodedPath, 'UTF-8')) {
  2. throw new MalformedUrlException;
  3. }
  4. return $next($request);
  5. }
  6. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}() in /home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php (line 50)
  1. $normalizedPath = $trimmedPath;
  2. }
  3. }
  4. if ($normalizedPath === $path) {
  5. return $next($request);
  6. }
  7. $query = parse_url($requestUri, PHP_URL_QUERY);
  8. $normalizedUri = $normalizedPath . ($query ? '?' . $query : '');
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $this->bootstrap();
  2. return (new Pipeline($this->app))
  3. ->send($request)
  4. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5. ->then($this->dispatchToRouter());
  6. }
  7. /**
  8. * Bootstrap the application for HTTP requests.
  9. *
  1. $this->requestStartedAt = Carbon::now();
  2. try {
  3. $request->enableHttpMethodParameterOverride();
  4. $response = $this->sendRequestThroughRouter($request);
  5. } catch (Throwable $e) {
  6. $this->reportException($e);
  7. $response = $this->renderException($request, $e);
  8. }
  1. */
  2. public function handleRequest(Request $request)
  3. {
  4. $kernel = $this->make(HttpKernelContract::class);
  5. $response = $kernel->handle($request)->send();
  6. $kernel->terminate($request, $response);
  7. }
  8. /**
Application->handleRequest() in /home/srv83227/domains/asted.cloud/public_html/index.php (line 18)
  1. // Register the Composer autoloader...
  2. require __DIR__.'/vendor/autoload.php';
  3. $app = require_once __DIR__.'/bootstrap/app.php';
  4. $app->handleRequest(Request::capture());

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)

  1. <?php if ($component->shouldRender()): ?>
  2. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  3. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  4. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  5. <?php endif; ?>
  6. <?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded'])
  1. // flush out any stray output that might get out before an error occurs or
  2. // an exception is thrown. This prevents any partial views from leaking.
  3. try {
  4. $this->files->getRequire($path, $data);
  5. } catch (Throwable $e) {
  6. $this->handleViewException($e, $obLevel);
  7. }
  8. return ltrim(ob_get_clean());
  9. }
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. if ($view instanceof View) {
  2. return $view->with($data)->render();
  3. } elseif ($view instanceof Htmlable) {
  4. return $view->toHtml();
  5. } else {
  6. return $this->make($view, $data)->render();
  7. }
  8. } finally {
  9. $this->currentComponentData = $previousComponentData;
  10. }
  11. }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  3. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?>
  9. <?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?>
  10. <?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?>
  11. <?php endif; ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. ])->render();
  2. return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  3. 'exception' => $exception,
  4. 'exceptionAsMarkdown' => $exceptionAsMarkdown,
  5. ])->render();
  6. }
  7. /**
  8. * Get the renderer's CSS content.
  9. *
  1. try {
  2. if (config('app.debug')) {
  3. if (app()->has(ExceptionRenderer::class)) {
  4. return $this->renderExceptionWithCustomRenderer($e);
  5. } elseif ($this->container->bound(Renderer::class)) {
  6. return $this->container->make(Renderer::class)->render(request(), $e);
  7. }
  8. }
  9. return $this->renderExceptionWithSymfony($e, config('app.debug'));
  10. } catch (Throwable $e) {
  1. * @return \Symfony\Component\HttpFoundation\Response
  2. */
  3. protected function convertExceptionToResponse(Throwable $e)
  4. {
  5. return new SymfonyResponse(
  6. $this->renderExceptionContent($e),
  7. $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8. $this->isHttpException($e) ? $e->getHeaders() : []
  9. );
  10. }
  1. * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2. */
  3. protected function prepareResponse($request, Throwable $e)
  4. {
  5. if (! $this->isHttpException($e) && config('app.debug')) {
  6. return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7. }
  8. if (! $this->isHttpException($e)) {
  9. $e = new HttpException(500, $e->getMessage(), $e);
  10. }
  1. */
  2. protected function renderExceptionResponse($request, Throwable $e)
  3. {
  4. return $this->shouldReturnJson($request, $e)
  5. ? $this->prepareJsonResponse($request, $e)
  6. : $this->prepareResponse($request, $e);
  7. }
  8. /**
  9. * Convert an authentication exception into a response.
  10. *
  1. return $this->finalizeRenderedResponse($request, match (true) {
  2. $e instanceof HttpResponseException => $e->getResponse(),
  3. $e instanceof AuthenticationException => $this->unauthenticated($request, $e),
  4. $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request),
  5. default => $this->renderExceptionResponse($request, $e),
  6. }, $e);
  7. }
  8. /**
  9. * Prepare the final, rendered response to be returned to the browser.
  1. $handler = $this->container->make(ExceptionHandler::class);
  2. $handler->report($e);
  3. $response = $handler->render($passable, $e);
  4. if (is_object($response) && method_exists($response, 'withException')) {
  5. $response->withException($e);
  6. }
  1. ? $pipe->{$this->method}(...$parameters)
  2. : $pipe(...$parameters);
  3. return $this->handleCarry($carry);
  4. } catch (Throwable $e) {
  5. return $this->handleException($passable, $e);
  6. }
  7. };
  8. };
  9. }
  1. * @param \Closure $next
  2. * @return mixed
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. $response = $next($request);
  7. foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8. $response->headers->setCookie($cookie);
  9. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. return $this->encrypt($next($this->decrypt($request)));
  7. }
  8. /**
  9. * Decrypt the cookies on the request.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2. return (new Pipeline($this->container))
  3. ->send($request)
  4. ->through($middleware)
  5. ->then(fn ($request) => $this->prepareResponse(
  6. $request, $route->run()
  7. ));
  8. }
  9. /**
  1. $request->setRouteResolver(fn () => $route);
  2. $this->events->dispatch(new RouteMatched($route, $request));
  3. return $this->prepareResponse($request,
  4. $this->runRouteWithinStack($route, $request)
  5. );
  6. }
  7. /**
  8. * Run the given route within a Stack "onion" instance.
  1. * @param \Illuminate\Http\Request $request
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function dispatchToRoute(Request $request)
  5. {
  6. return $this->runRoute($request, $this->findRoute($request));
  7. }
  8. /**
  9. * Find the route matching a given request.
  10. *
  1. */
  2. public function dispatch(Request $request)
  3. {
  4. $this->currentRequest = $request;
  5. return $this->dispatchToRoute($request);
  6. }
  7. /**
  8. * Dispatch the request to a route and return the response.
  9. *
  1. protected function dispatchToRouter()
  2. {
  3. return function ($request) {
  4. $this->app->instance('request', $request);
  5. return $this->router->dispatch($request);
  6. };
  7. }
  8. /**
  9. * Call the terminate method on any terminable middleware.
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} (line 180)
  1. */
  2. protected function prepareDestination(Closure $destination)
  3. {
  4. return function ($passable) use ($destination) {
  5. try {
  6. return $destination($passable);
  7. } catch (Throwable $e) {
  8. return $this->handleException($passable, $e);
  9. }
  10. };
  11. }
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
  2. throw new PostTooLargeException('The POST data is too large.');
  3. }
  4. return $next($request);
  5. }
  6. /**
  7. * Determine the server 'post_max_size' as bytes.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. null,
  2. $this->getHeaders($data)
  3. );
  4. }
  5. return $next($request);
  6. }
  7. /**
  8. * Determine if the incoming request has a maintenance mode bypass cookie.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 48)
  1. * @return \Illuminate\Http\Response
  2. */
  3. public function handle($request, Closure $next)
  4. {
  5. if (! $this->hasMatchingPath($request)) {
  6. return $next($request);
  7. }
  8. $this->cors->setOptions($this->container['config']->get('cors', []));
  9. if ($this->cors->isPreflightRequest($request)) {
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 58)
  1. {
  2. $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3. $this->setTrustedProxyIpAddresses($request);
  4. return $next($request);
  5. }
  6. /**
  7. * Sets the trusted proxies on the request.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle(Request $request, Closure $next)
  5. {
  6. return $next($request);
  7. }
  8. /**
  9. * Invoke the deferred callbacks.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if (! mb_check_encoding($decodedPath, 'UTF-8')) {
  2. throw new MalformedUrlException;
  3. }
  4. return $next($request);
  5. }
  6. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}() in /home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php (line 50)
  1. $normalizedPath = $trimmedPath;
  2. }
  3. }
  4. if ($normalizedPath === $path) {
  5. return $next($request);
  6. }
  7. $query = parse_url($requestUri, PHP_URL_QUERY);
  8. $normalizedUri = $normalizedPath . ($query ? '?' . $query : '');
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $this->bootstrap();
  2. return (new Pipeline($this->app))
  3. ->send($request)
  4. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5. ->then($this->dispatchToRouter());
  6. }
  7. /**
  8. * Bootstrap the application for HTTP requests.
  9. *
  1. $this->requestStartedAt = Carbon::now();
  2. try {
  3. $request->enableHttpMethodParameterOverride();
  4. $response = $this->sendRequestThroughRouter($request);
  5. } catch (Throwable $e) {
  6. $this->reportException($e);
  7. $response = $this->renderException($request, $e);
  8. }
  1. */
  2. public function handleRequest(Request $request)
  3. {
  4. $kernel = $this->make(HttpKernelContract::class);
  5. $response = $kernel->handle($request)->send();
  6. $kernel->terminate($request, $response);
  7. }
  8. /**
Application->handleRequest() in /home/srv83227/domains/asted.cloud/public_html/index.php (line 18)
  1. // Register the Composer autoloader...
  2. require __DIR__.'/vendor/autoload.php';
  3. $app = require_once __DIR__.'/bootstrap/app.php';
  4. $app->handleRequest(Request::capture());

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)

  1. <?php if ($component->shouldRender()): ?>
  2. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  3. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  4. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  5. <?php endif; ?>
  6. <?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded'])
  1. // flush out any stray output that might get out before an error occurs or
  2. // an exception is thrown. This prevents any partial views from leaking.
  3. try {
  4. $this->files->getRequire($path, $data);
  5. } catch (Throwable $e) {
  6. $this->handleViewException($e, $obLevel);
  7. }
  8. return ltrim(ob_get_clean());
  9. }
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. if ($view instanceof View) {
  2. return $view->with($data)->render();
  3. } elseif ($view instanceof Htmlable) {
  4. return $view->toHtml();
  5. } else {
  6. return $this->make($view, $data)->render();
  7. }
  8. } finally {
  9. $this->currentComponentData = $previousComponentData;
  10. }
  11. }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  3. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__attributesOriginal449787012edfba29f0e80f325065fad5)): ?>
  9. <?php $attributes = $__attributesOriginal449787012edfba29f0e80f325065fad5; ?>
  10. <?php unset($__attributesOriginal449787012edfba29f0e80f325065fad5); ?>
  11. <?php endif; ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. if ($view instanceof View) {
  2. return $view->with($data)->render();
  3. } elseif ($view instanceof Htmlable) {
  4. return $view->toHtml();
  5. } else {
  6. return $this->make($view, $data)->render();
  7. }
  8. } finally {
  9. $this->currentComponentData = $previousComponentData;
  10. }
  11. }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  3. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?>
  9. <?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?>
  10. <?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?>
  11. <?php endif; ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. ])->render();
  2. return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  3. 'exception' => $exception,
  4. 'exceptionAsMarkdown' => $exceptionAsMarkdown,
  5. ])->render();
  6. }
  7. /**
  8. * Get the renderer's CSS content.
  9. *
  1. try {
  2. if (config('app.debug')) {
  3. if (app()->has(ExceptionRenderer::class)) {
  4. return $this->renderExceptionWithCustomRenderer($e);
  5. } elseif ($this->container->bound(Renderer::class)) {
  6. return $this->container->make(Renderer::class)->render(request(), $e);
  7. }
  8. }
  9. return $this->renderExceptionWithSymfony($e, config('app.debug'));
  10. } catch (Throwable $e) {
  1. * @return \Symfony\Component\HttpFoundation\Response
  2. */
  3. protected function convertExceptionToResponse(Throwable $e)
  4. {
  5. return new SymfonyResponse(
  6. $this->renderExceptionContent($e),
  7. $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8. $this->isHttpException($e) ? $e->getHeaders() : []
  9. );
  10. }
  1. * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2. */
  3. protected function prepareResponse($request, Throwable $e)
  4. {
  5. if (! $this->isHttpException($e) && config('app.debug')) {
  6. return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7. }
  8. if (! $this->isHttpException($e)) {
  9. $e = new HttpException(500, $e->getMessage(), $e);
  10. }
  1. */
  2. protected function renderExceptionResponse($request, Throwable $e)
  3. {
  4. return $this->shouldReturnJson($request, $e)
  5. ? $this->prepareJsonResponse($request, $e)
  6. : $this->prepareResponse($request, $e);
  7. }
  8. /**
  9. * Convert an authentication exception into a response.
  10. *
  1. return $this->finalizeRenderedResponse($request, match (true) {
  2. $e instanceof HttpResponseException => $e->getResponse(),
  3. $e instanceof AuthenticationException => $this->unauthenticated($request, $e),
  4. $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request),
  5. default => $this->renderExceptionResponse($request, $e),
  6. }, $e);
  7. }
  8. /**
  9. * Prepare the final, rendered response to be returned to the browser.
  1. $handler = $this->container->make(ExceptionHandler::class);
  2. $handler->report($e);
  3. $response = $handler->render($passable, $e);
  4. if (is_object($response) && method_exists($response, 'withException')) {
  5. $response->withException($e);
  6. }
  1. ? $pipe->{$this->method}(...$parameters)
  2. : $pipe(...$parameters);
  3. return $this->handleCarry($carry);
  4. } catch (Throwable $e) {
  5. return $this->handleException($passable, $e);
  6. }
  7. };
  8. };
  9. }
  1. * @param \Closure $next
  2. * @return mixed
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. $response = $next($request);
  7. foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8. $response->headers->setCookie($cookie);
  9. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. return $this->encrypt($next($this->decrypt($request)));
  7. }
  8. /**
  9. * Decrypt the cookies on the request.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2. return (new Pipeline($this->container))
  3. ->send($request)
  4. ->through($middleware)
  5. ->then(fn ($request) => $this->prepareResponse(
  6. $request, $route->run()
  7. ));
  8. }
  9. /**
  1. $request->setRouteResolver(fn () => $route);
  2. $this->events->dispatch(new RouteMatched($route, $request));
  3. return $this->prepareResponse($request,
  4. $this->runRouteWithinStack($route, $request)
  5. );
  6. }
  7. /**
  8. * Run the given route within a Stack "onion" instance.
  1. * @param \Illuminate\Http\Request $request
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function dispatchToRoute(Request $request)
  5. {
  6. return $this->runRoute($request, $this->findRoute($request));
  7. }
  8. /**
  9. * Find the route matching a given request.
  10. *
  1. */
  2. public function dispatch(Request $request)
  3. {
  4. $this->currentRequest = $request;
  5. return $this->dispatchToRoute($request);
  6. }
  7. /**
  8. * Dispatch the request to a route and return the response.
  9. *
  1. protected function dispatchToRouter()
  2. {
  3. return function ($request) {
  4. $this->app->instance('request', $request);
  5. return $this->router->dispatch($request);
  6. };
  7. }
  8. /**
  9. * Call the terminate method on any terminable middleware.
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} (line 180)
  1. */
  2. protected function prepareDestination(Closure $destination)
  3. {
  4. return function ($passable) use ($destination) {
  5. try {
  6. return $destination($passable);
  7. } catch (Throwable $e) {
  8. return $this->handleException($passable, $e);
  9. }
  10. };
  11. }
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
  2. throw new PostTooLargeException('The POST data is too large.');
  3. }
  4. return $next($request);
  5. }
  6. /**
  7. * Determine the server 'post_max_size' as bytes.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. null,
  2. $this->getHeaders($data)
  3. );
  4. }
  5. return $next($request);
  6. }
  7. /**
  8. * Determine if the incoming request has a maintenance mode bypass cookie.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 48)
  1. * @return \Illuminate\Http\Response
  2. */
  3. public function handle($request, Closure $next)
  4. {
  5. if (! $this->hasMatchingPath($request)) {
  6. return $next($request);
  7. }
  8. $this->cors->setOptions($this->container['config']->get('cors', []));
  9. if ($this->cors->isPreflightRequest($request)) {
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 58)
  1. {
  2. $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3. $this->setTrustedProxyIpAddresses($request);
  4. return $next($request);
  5. }
  6. /**
  7. * Sets the trusted proxies on the request.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle(Request $request, Closure $next)
  5. {
  6. return $next($request);
  7. }
  8. /**
  9. * Invoke the deferred callbacks.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if (! mb_check_encoding($decodedPath, 'UTF-8')) {
  2. throw new MalformedUrlException;
  3. }
  4. return $next($request);
  5. }
  6. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}() in /home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php (line 50)
  1. $normalizedPath = $trimmedPath;
  2. }
  3. }
  4. if ($normalizedPath === $path) {
  5. return $next($request);
  6. }
  7. $query = parse_url($requestUri, PHP_URL_QUERY);
  8. $normalizedUri = $normalizedPath . ($query ? '?' . $query : '');
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $this->bootstrap();
  2. return (new Pipeline($this->app))
  3. ->send($request)
  4. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5. ->then($this->dispatchToRouter());
  6. }
  7. /**
  8. * Bootstrap the application for HTTP requests.
  9. *
  1. $this->requestStartedAt = Carbon::now();
  2. try {
  3. $request->enableHttpMethodParameterOverride();
  4. $response = $this->sendRequestThroughRouter($request);
  5. } catch (Throwable $e) {
  6. $this->reportException($e);
  7. $response = $this->renderException($request, $e);
  8. }
  1. */
  2. public function handleRequest(Request $request)
  3. {
  4. $kernel = $this->make(HttpKernelContract::class);
  5. $response = $kernel->handle($request)->send();
  6. $kernel->terminate($request, $response);
  7. }
  8. /**
Application->handleRequest() in /home/srv83227/domains/asted.cloud/public_html/index.php (line 18)
  1. // Register the Composer autoloader...
  2. require __DIR__.'/vendor/autoload.php';
  3. $app = require_once __DIR__.'/bootstrap/app.php';
  4. $app->handleRequest(Request::capture());

ParseError

syntax error, unexpected end of file

  1. <?php if ($component->shouldRender()): ?>
  2. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  3. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  4. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  5. <?php endif; ?>
  6. <?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded'])
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. if ($view instanceof View) {
  2. return $view->with($data)->render();
  3. } elseif ($view instanceof Htmlable) {
  4. return $view->toHtml();
  5. } else {
  6. return $this->make($view, $data)->render();
  7. }
  8. } finally {
  9. $this->currentComponentData = $previousComponentData;
  10. }
  11. }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  3. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__attributesOriginal449787012edfba29f0e80f325065fad5)): ?>
  9. <?php $attributes = $__attributesOriginal449787012edfba29f0e80f325065fad5; ?>
  10. <?php unset($__attributesOriginal449787012edfba29f0e80f325065fad5); ?>
  11. <?php endif; ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. if ($view instanceof View) {
  2. return $view->with($data)->render();
  3. } elseif ($view instanceof Htmlable) {
  4. return $view->toHtml();
  5. } else {
  6. return $this->make($view, $data)->render();
  7. }
  8. } finally {
  9. $this->currentComponentData = $previousComponentData;
  10. }
  11. }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
  3. <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?>
  9. <?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?>
  10. <?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?>
  11. <?php endif; ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. ])->render();
  2. return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  3. 'exception' => $exception,
  4. 'exceptionAsMarkdown' => $exceptionAsMarkdown,
  5. ])->render();
  6. }
  7. /**
  8. * Get the renderer's CSS content.
  9. *
  1. try {
  2. if (config('app.debug')) {
  3. if (app()->has(ExceptionRenderer::class)) {
  4. return $this->renderExceptionWithCustomRenderer($e);
  5. } elseif ($this->container->bound(Renderer::class)) {
  6. return $this->container->make(Renderer::class)->render(request(), $e);
  7. }
  8. }
  9. return $this->renderExceptionWithSymfony($e, config('app.debug'));
  10. } catch (Throwable $e) {
  1. * @return \Symfony\Component\HttpFoundation\Response
  2. */
  3. protected function convertExceptionToResponse(Throwable $e)
  4. {
  5. return new SymfonyResponse(
  6. $this->renderExceptionContent($e),
  7. $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8. $this->isHttpException($e) ? $e->getHeaders() : []
  9. );
  10. }
  1. * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2. */
  3. protected function prepareResponse($request, Throwable $e)
  4. {
  5. if (! $this->isHttpException($e) && config('app.debug')) {
  6. return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7. }
  8. if (! $this->isHttpException($e)) {
  9. $e = new HttpException(500, $e->getMessage(), $e);
  10. }
  1. */
  2. protected function renderExceptionResponse($request, Throwable $e)
  3. {
  4. return $this->shouldReturnJson($request, $e)
  5. ? $this->prepareJsonResponse($request, $e)
  6. : $this->prepareResponse($request, $e);
  7. }
  8. /**
  9. * Convert an authentication exception into a response.
  10. *
  1. return $this->finalizeRenderedResponse($request, match (true) {
  2. $e instanceof HttpResponseException => $e->getResponse(),
  3. $e instanceof AuthenticationException => $this->unauthenticated($request, $e),
  4. $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request),
  5. default => $this->renderExceptionResponse($request, $e),
  6. }, $e);
  7. }
  8. /**
  9. * Prepare the final, rendered response to be returned to the browser.
  1. $handler = $this->container->make(ExceptionHandler::class);
  2. $handler->report($e);
  3. $response = $handler->render($passable, $e);
  4. if (is_object($response) && method_exists($response, 'withException')) {
  5. $response->withException($e);
  6. }
  1. ? $pipe->{$this->method}(...$parameters)
  2. : $pipe(...$parameters);
  3. return $this->handleCarry($carry);
  4. } catch (Throwable $e) {
  5. return $this->handleException($passable, $e);
  6. }
  7. };
  8. };
  9. }
  1. * @param \Closure $next
  2. * @return mixed
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. $response = $next($request);
  7. foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8. $response->headers->setCookie($cookie);
  9. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. return $this->encrypt($next($this->decrypt($request)));
  7. }
  8. /**
  9. * Decrypt the cookies on the request.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2. return (new Pipeline($this->container))
  3. ->send($request)
  4. ->through($middleware)
  5. ->then(fn ($request) => $this->prepareResponse(
  6. $request, $route->run()
  7. ));
  8. }
  9. /**
  1. $request->setRouteResolver(fn () => $route);
  2. $this->events->dispatch(new RouteMatched($route, $request));
  3. return $this->prepareResponse($request,
  4. $this->runRouteWithinStack($route, $request)
  5. );
  6. }
  7. /**
  8. * Run the given route within a Stack "onion" instance.
  1. * @param \Illuminate\Http\Request $request
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function dispatchToRoute(Request $request)
  5. {
  6. return $this->runRoute($request, $this->findRoute($request));
  7. }
  8. /**
  9. * Find the route matching a given request.
  10. *
  1. */
  2. public function dispatch(Request $request)
  3. {
  4. $this->currentRequest = $request;
  5. return $this->dispatchToRoute($request);
  6. }
  7. /**
  8. * Dispatch the request to a route and return the response.
  9. *
  1. protected function dispatchToRouter()
  2. {
  3. return function ($request) {
  4. $this->app->instance('request', $request);
  5. return $this->router->dispatch($request);
  6. };
  7. }
  8. /**
  9. * Call the terminate method on any terminable middleware.
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} (line 180)
  1. */
  2. protected function prepareDestination(Closure $destination)
  3. {
  4. return function ($passable) use ($destination) {
  5. try {
  6. return $destination($passable);
  7. } catch (Throwable $e) {
  8. return $this->handleException($passable, $e);
  9. }
  10. };
  11. }
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
  2. throw new PostTooLargeException('The POST data is too large.');
  3. }
  4. return $next($request);
  5. }
  6. /**
  7. * Determine the server 'post_max_size' as bytes.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. null,
  2. $this->getHeaders($data)
  3. );
  4. }
  5. return $next($request);
  6. }
  7. /**
  8. * Determine if the incoming request has a maintenance mode bypass cookie.
  9. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 48)
  1. * @return \Illuminate\Http\Response
  2. */
  3. public function handle($request, Closure $next)
  4. {
  5. if (! $this->hasMatchingPath($request)) {
  6. return $next($request);
  7. }
  8. $this->cors->setOptions($this->container['config']->get('cors', []));
  9. if ($this->cors->isPreflightRequest($request)) {
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 58)
  1. {
  2. $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3. $this->setTrustedProxyIpAddresses($request);
  4. return $next($request);
  5. }
  6. /**
  7. * Sets the trusted proxies on the request.
  8. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. * @param \Closure $next
  2. * @return \Symfony\Component\HttpFoundation\Response
  3. */
  4. public function handle(Request $request, Closure $next)
  5. {
  6. return $next($request);
  7. }
  8. /**
  9. * Invoke the deferred callbacks.
  10. *
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
  1. if (! mb_check_encoding($decodedPath, 'UTF-8')) {
  2. throw new MalformedUrlException;
  3. }
  4. return $next($request);
  5. }
  6. }
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}() in /home/srv83227/domains/asted.cloud/public_html/app/Http/Middleware/NormalizeRequestPath.php (line 50)
  1. $normalizedPath = $trimmedPath;
  2. }
  3. }
  4. if ($normalizedPath === $path) {
  5. return $next($request);
  6. }
  7. $query = parse_url($requestUri, PHP_URL_QUERY);
  8. $normalizedUri = $normalizedPath . ($query ? '?' . $query : '');
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /home/srv83227/domains/asted.cloud/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} (line 137)
  1. );
  2. try {
  3. return $this->withinTransaction !== false
  4. ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable))
  5. : $pipeline($this->passable);
  6. } finally {
  7. if ($this->finally) {
  8. ($this->finally)($this->passable);
  9. }
  10. }
  1. $this->bootstrap();
  2. return (new Pipeline($this->app))
  3. ->send($request)
  4. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5. ->then($this->dispatchToRouter());
  6. }
  7. /**
  8. * Bootstrap the application for HTTP requests.
  9. *
  1. $this->requestStartedAt = Carbon::now();
  2. try {
  3. $request->enableHttpMethodParameterOverride();
  4. $response = $this->sendRequestThroughRouter($request);
  5. } catch (Throwable $e) {
  6. $this->reportException($e);
  7. $response = $this->renderException($request, $e);
  8. }
  1. */
  2. public function handleRequest(Request $request)
  3. {
  4. $kernel = $this->make(HttpKernelContract::class);
  5. $response = $kernel->handle($request)->send();
  6. $kernel->terminate($request, $response);
  7. }
  8. /**
Application->handleRequest() in /home/srv83227/domains/asted.cloud/public_html/index.php (line 18)
  1. // Register the Composer autoloader...
  2. require __DIR__.'/vendor/autoload.php';
  3. $app = require_once __DIR__.'/bootstrap/app.php';
  4. $app->handleRequest(Request::capture());

Stack Traces 4

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