Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
The route sitemap.xml could not be found. Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "The route sitemap.xml could not be found." Stacktrace: #18 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:44 #17 Illuminate\Routing\AbstractRouteCollection:handleMatchedRoute in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:162 #16 Illuminate\Routing\RouteCollection:match in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753 #15 Illuminate\Routing\Router:findRoute in /var/www/html/src/Fabric/Routing/Router.php:67 #14 Fabric\Routing\Router:dispatchToRoute in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729 #13 Illuminate\Routing\Router:dispatch in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190 #12 Illuminate\Foundation\Http\Kernel:{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():187} in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141 #11 Illuminate\Pipeline\Pipeline:{closure:Illuminate\Pipeline\Pipeline::prepareDestination():139} in /var/www/html/src/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59 #10 Barryvdh\Debugbar\Middleware\InjectDebugbar:handle in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180 #9 Illuminate\Pipeline\Pipeline:{closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156} in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121 #8 Illuminate\Session\Middleware\StartSession:handleStatefulRequest in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64 #7 Illuminate\Session\Middleware\StartSession:handle in /var/www/html/src/Fabric/Session/Middleware/StartSession.php:12 #6 Fabric\Session\Middleware\StartSession:handle in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180 #5 Illuminate\Pipeline\Pipeline:{closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156} in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 #4 Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse:handle in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180 #3 Illuminate\Pipeline\Pipeline:{closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156} in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116 #2 Illuminate\Pipeline\Pipeline:then in /var/www/html/src/Fabric/Foundation/Http/Kernel.php:103 #1 Fabric\Foundation\Http\Kernel:sendRequestThroughRouter in /var/www/html/src/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134 #0 Illuminate\Foundation\Http\Kernel:handle in /var/www/html/public/index.php:20
Stack frames (19)
18
Symfony\Component\HttpKernel\Exception\NotFoundHttpException
/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php44
17
Illuminate\Routing\AbstractRouteCollection handleMatchedRoute
/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php162
16
Illuminate\Routing\RouteCollection match
/vendor/laravel/framework/src/Illuminate/Routing/Router.php753
15
Illuminate\Routing\Router findRoute
/Fabric/Routing/Router.php67
14
Fabric\Routing\Router dispatchToRoute
/vendor/laravel/framework/src/Illuminate/Routing/Router.php729
13
Illuminate\Routing\Router dispatch
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php190
12
Illuminate\Foundation\Http\Kernel {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():187}
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php141
11
Illuminate\Pipeline\Pipeline {closure:Illuminate\Pipeline\Pipeline::prepareDestination():139}
/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php59
10
Barryvdh\Debugbar\Middleware\InjectDebugbar handle
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php180
9
Illuminate\Pipeline\Pipeline {closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156}
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php121
8
Illuminate\Session\Middleware\StartSession handleStatefulRequest
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php64
7
Illuminate\Session\Middleware\StartSession handle
/Fabric/Session/Middleware/StartSession.php12
6
Fabric\Session\Middleware\StartSession handle
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php180
5
Illuminate\Pipeline\Pipeline {closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156}
/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php37
4
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse handle
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php180
3
Illuminate\Pipeline\Pipeline {closure:{closure:Illuminate\Pipeline\Pipeline::carry():155}:156}
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php116
2
Illuminate\Pipeline\Pipeline then
/Fabric/Foundation/Http/Kernel.php103
1
Fabric\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php134
0
Illuminate\Foundation\Http\Kernel handle
/var/www/html/public/index.php20
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php
     * @return \Illuminate\Routing\Route
     *
     * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
     */
    protected function handleMatchedRoute(Request $request, $route)
    {
        if (! is_null($route)) {
            return $route->bind($request);
        }
 
        // If no route was found we will now check if a matching route is specified by
        // another HTTP verb. If it is we will need to throw a MethodNotAllowed and
        // inform the user agent of which HTTP verb it should use for this route.
        $others = $this->checkForAlternateVerbs($request);
 
        if (count($others) > 0) {
            return $this->getRouteForMethods($request, $others);
        }
 
        throw new NotFoundHttpException(sprintf(
            'The route %s could not be found.',
            $request->path()
        ));
    }
 
    /**
     * Determine if any routes match on another HTTP verb.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function checkForAlternateVerbs($request)
    {
        $methods = array_diff(Router::$verbs, [$request->getMethod()]);
 
        // Here we will spin through all verbs except for the current request verb and
        // check to see if any routes respond to them. If they do, we will return a
        // proper error response with the correct headers on the response string.
        return array_values(array_filter(
            $methods,
Arguments
  1. "The route sitemap.xml could not be found."
    
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php
 
    /**
     * Find the first route matching a given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Routing\Route
     *
     * @throws \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
     * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
     */
    public function match(Request $request)
    {
        $routes = $this->get($request->getMethod());
 
        // First, we will see if we can find a matching route for this current request
        // method. If we can, great, we can just return it so that it can be called
        // by the consumer. Otherwise we will check for routes with another verb.
        $route = $this->matchAgainstRoutes($routes, $request);
 
        return $this->handleMatchedRoute($request, $route);
    }
 
    /**
     * Get routes from the collection by method.
     *
     * @param  string|null  $method
     * @return \Illuminate\Routing\Route[]
     */
    public function get($method = null)
    {
        return is_null($method) ? $this->getRoutes() : Arr::get($this->routes, $method, []);
    }
 
    /**
     * Determine if the route collection contains a given named route.
     *
     * @param  string  $name
     * @return bool
     */
    public function hasNamedRoute($name)
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/Router.php
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function dispatchToRoute(Request $request)
    {
        return $this->runRoute($request, $this->findRoute($request));
    }
 
    /**
     * Find the route matching a given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Routing\Route
     */
    protected function findRoute($request)
    {
        $this->events->dispatch(new Routing($request));
 
        $this->current = $route = $this->routes->match($request);
 
        $route->setContainer($this->container);
 
        $this->container->instance(Route::class, $route);
 
        return $route;
    }
 
    /**
     * Return the response for the given route.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Routing\Route  $route
     * @return \Symfony\Component\HttpFoundation\Response
     */
    protected function runRoute(Request $request, Route $route)
    {
        $request->setRouteResolver(fn () => $route);
 
        $this->events->dispatch(new RouteMatched($route, $request));
/var/www/html/src/Fabric/Routing/Router.php
        
        $this->updateGroupStack($attributes);

        // Once we have updated the group stack, we'll load the provided routes and
        // merge in the group's attributes when the routes are created. After we
        // have created the routes, we will pop the attributes off the stack.
        $this->loadRoutes($routes);

        array_pop($this->groupStack);
    }

    /**
     * Dispatch the request to a route and return the response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return mixed
     */
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        
        app('events')->fire('route', [$route, $request]);

        return $this->runRoute($request, $route);
    }

    /**
     * @param string $uri
     * @param null $action
     * @return Route
     */
    public function get($uri, $action = null) : Route
    {
        return parent::get($uri, $action);
    }

    /**
     * @param string $uri
     * @param null $action
     * @return Route
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Routing/Router.php
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function respondWithRoute($name)
    {
        $route = tap($this->routes->getByName($name))->bind($this->currentRequest);
 
        return $this->runRoute($this->currentRequest, $route);
    }
 
    /**
     * Dispatch the request to the application.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
 
        return $this->dispatchToRoute($request);
    }
 
    /**
     * Dispatch the request to a route and return the response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function dispatchToRoute(Request $request)
    {
        return $this->runRoute($request, $this->findRoute($request));
    }
 
    /**
     * Find the route matching a given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Routing\Route
     */
    protected function findRoute($request)
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
 
        foreach ($this->requestLifecycleDurationHandlers as ['threshold' => $threshold, 'handler' => $handler]) {
            $end ??= Carbon::now();
 
            if ($this->requestStartedAt->diffInMilliseconds($end) > $threshold) {
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
     * @return mixed
     */
    public function thenReturn()
    {
        return $this->then(function ($passable) {
            return $passable;
        });
    }
 
    /**
     * Get the final piece of the Closure onion.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
    protected function prepareDestination(Closure $destination)
    {
        return function ($passable) use ($destination) {
            try {
                return $destination($passable);
            } catch (Throwable $e) {
                return $this->handleException($passable, $e);
            }
        };
    }
 
    /**
     * Get a Closure that represents a slice of the application onion.
     *
     * @return \Closure
     */
    protected function carry()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                try {
                    if (is_callable($pipe)) {
                        // If the pipe is a callable, then we will call it directly, but otherwise we
                        // will resolve the pipes out of the dependency container and call it with
                        // the appropriate method and arguments, returning the results back out.
/var/www/html/src/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php
     * @param  LaravelDebugbar $debugbar
     */
    public function __construct(Container $container, LaravelDebugbar $debugbar)
    {
        $this->container = $container;
        $this->debugbar = $debugbar;
        $this->except = config('debugbar.except') ?: [];
    }
 
    /**
     * Handle an incoming request.
     *
     * @param  Request  $request
     * @param  Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
            return $next($request);
        }
 
        $this->debugbar->boot();
 
        try {
            /** @var \Illuminate\Http\Response $response */
            $response = $next($request);
        } catch (Throwable $e) {
            $response = $this->handleException($request, $e);
        }
 
        // Modify the response to add the Debugbar
        $this->debugbar->modifyResponse($request, $response);
 
        return $response;
    }
 
    /**
     * Handle the given exception.
     *
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);
 
                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);
 
                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }
 
                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);
 
                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }
 
    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string  $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
    /**
     * Handle the given request within session state.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Contracts\Session\Session  $session
     * @param  \Closure  $next
     * @return mixed
     */
    protected function handleStatefulRequest(Request $request, $session, Closure $next)
    {
        // If a session driver has been configured, we will need to start the session here
        // so that the data is ready for an application. Note that the Laravel sessions
        // do not make use of PHP "native" sessions in any way since they are crappy.
        $request->setLaravelSession(
            $this->startSession($request, $session)
        );
 
        $this->collectGarbage($session);
 
        $response = $next($request);
 
        $this->storeCurrentUrl($request, $session);
 
        $this->addCookieToResponse($response, $session);
 
        // Again, if the session has been configured we will need to close out the session
        // so that the attributes may be persisted to some storage medium. We will also
        // add the session identifier cookie to the application response headers now.
        $this->saveSession($request);
 
        return $response;
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Contracts\Session\Session  $session
     * @return \Illuminate\Contracts\Session\Session
     */
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if (! $this->sessionConfigured()) {
            return $next($request);
        }
 
        $session = $this->getSession($request);
 
        if ($this->manager->shouldBlock() ||
            ($request->route() instanceof Route && $request->route()->locksFor())) {
            return $this->handleRequestWhileBlocking($request, $session, $next);
        }
 
        return $this->handleStatefulRequest($request, $session, $next);
    }
 
    /**
     * Handle the given request within session state.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Contracts\Session\Session  $session
     * @param  \Closure  $next
     * @return mixed
     */
    protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)
    {
        if (! $request->route() instanceof Route) {
            return;
        }
 
        $lockFor = $request->route() && $request->route()->locksFor()
                        ? $request->route()->locksFor()
                        : 10;
 
/var/www/html/src/Fabric/Session/Middleware/StartSession.php
<?php namespace Fabric\Session\Middleware;

use Closure;
use Illuminate\Session\Middleware\StartSession as BaseStartSession;

Class StartSession extends BaseStartSession
{
    public function handle($request, Closure $next)
    {
        if (app('filters')->run('start_session', true, $request))
        {
            return parent::handle($request, $next);
        }
        
        return $next($request);
    }
}
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);
 
                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);
 
                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }
 
                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);
 
                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }
 
    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string  $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php
     * Create a new CookieQueue instance.
     *
     * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies
     * @return void
     */
    public function __construct(CookieJar $cookies)
    {
        $this->cookies = $cookies;
    }
 
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $response = $next($request);
 
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
        }
 
        return $response;
    }
}
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);
 
                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);
 
                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }
 
                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);
 
                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }
 
    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string  $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
    public function via($method)
    {
        $this->method = $method;
 
        return $this;
    }
 
    /**
     * Run the pipeline with a final destination callback.
     *
     * @param  \Closure  $destination
     * @return mixed
     */
    public function then(Closure $destination)
    {
        $pipeline = array_reduce(
            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
        );
 
        return $pipeline($this->passable);
    }
 
    /**
     * Run the pipeline and return the result.
     *
     * @return mixed
     */
    public function thenReturn()
    {
        return $this->then(function ($passable) {
            return $passable;
        });
    }
 
    /**
     * Get the final piece of the Closure onion.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
/var/www/html/src/Fabric/Foundation/Http/Kernel.php

        return $this;
    }

    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
        
        $this->bootstrap();

        return (new Pipeline($this->app))
            ->send($request)
            ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
            ->then($this->dispatchToRouter());
    }
}
 
/var/www/html/src/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app = $app;
        $this->router = $router;
 
        $this->syncMiddlewareToRouter();
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        $this->requestStartedAt = Carbon::now();
 
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
/var/www/html/public/index.php
<?php

/**
 * TEDL
 *
 * Licensed under proprietary license.
 */

use Fabric\Foundation\Http\Request;

/**
 * @var $app \Fabric\Foundation\Application
 */
$app = require __DIR__.'/../app.php';

$request = Request::capture();

$kernel = $app->kernel();

$response = $kernel->handle($request);

$app['events']->fire('kernel.handled', [
    'request' => $request,
    'response' => $response
]);

$response->send();

$kernel->terminate($request, $response);

Environment & details:

empty
empty
empty
empty
empty
Key Value
USER
"www-data"
HOME
"/var/www"
HTTP_HOST
"autotrader.idemoit.com"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT
"*/*"
REDIRECT_STATUS
"200"
SERVER_NAME
"autotrader.idemoit.com"
SERVER_PORT
"443"
SERVER_ADDR
"138.68.178.87"
REMOTE_USER
""
REMOTE_PORT
"47156"
REMOTE_ADDR
"216.73.216.187"
SERVER_SOFTWARE
"nginx/1.24.0"
GATEWAY_INTERFACE
"CGI/1.1"
HTTPS
"on"
REQUEST_SCHEME
"https"
SERVER_PROTOCOL
"HTTP/1.1"
DOCUMENT_ROOT
"/var/www/html/public"
DOCUMENT_URI
"/index.php"
REQUEST_URI
"/sitemap.xml"
SCRIPT_NAME
"/index.php"
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET"
QUERY_STRING
""
SCRIPT_FILENAME
"/var/www/html/public/index.php"
PATH_INFO
""
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1773652796.8605
REQUEST_TIME
1773652796
APP_ENV
"testing"
DB_DRIVER
"mysql"
DB_HOST
"localhost"
DB_NAME
"db"
DB_USERNAME
"adminweb"
DB_PASSWORD
"StrongPasswordHere"
SESSION_DOMAIN
"autotrader.idemoit.com"
SESSION_SECURE
""
URL
"https://autotrader.idemoit.com"
APP_KEY
"eQE4uTsb9LhIuNel"
FABRIC_PATH
"/var/www/html/src/"
RECAPTCHA_SECRET_KEY
"6LehSCcrAAAAAJPhn7kosRa9523MjWN-ZPPSqDMk"
RECAPTCHA_SITE_KEY
"6LehSCcrAAAAAB4D52C2aTlL4m3_n2mGTjCFzmIu"
DEBUG
"true"
APP_DEBUG
"true"
LOG_CHANNEL
"syslog"
MAILGUN_API
""
MAILGUN_DOMAIN
""
MAILGUN_REGION
""
SMTP_HOST
"sandbox.smtp.mailtrap.io"
SMTP_PORT
"465"
SMTP_USERNAME
"c03ac1a639ba02"
SMTP_PASSWORD
"ffb2b6a75d360b"
Key Value
APP_ENV
"testing"
DB_DRIVER
"mysql"
DB_HOST
"localhost"
DB_NAME
"db"
DB_USERNAME
"adminweb"
DB_PASSWORD
"StrongPasswordHere"
SESSION_DOMAIN
"autotrader.idemoit.com"
SESSION_SECURE
""
URL
"https://autotrader.idemoit.com"
APP_KEY
"eQE4uTsb9LhIuNel"
FABRIC_PATH
"/var/www/html/src/"
RECAPTCHA_SECRET_KEY
"6LehSCcrAAAAAJPhn7kosRa9523MjWN-ZPPSqDMk"
RECAPTCHA_SITE_KEY
"6LehSCcrAAAAAB4D52C2aTlL4m3_n2mGTjCFzmIu"
DEBUG
"true"
APP_DEBUG
"true"
LOG_CHANNEL
"syslog"
MAILGUN_API
""
MAILGUN_DOMAIN
""
MAILGUN_REGION
""
SMTP_HOST
"sandbox.smtp.mailtrap.io"
SMTP_PORT
"465"
SMTP_USERNAME
"c03ac1a639ba02"
SMTP_PASSWORD
"ffb2b6a75d360b"
0. Whoops\Handler\PrettyPageHandler