Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
No message Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "" Stacktrace: #16 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /home/comfortga/public_html/bootstrap/cache/compiled.php:8912 #15 Illuminate\Routing\RouteCollection:match in /home/comfortga/public_html/bootstrap/cache/compiled.php:8264 #14 Illuminate\Routing\Router:findRoute in /home/comfortga/public_html/bootstrap/cache/compiled.php:8212 #13 Illuminate\Routing\Router:dispatchToRoute in /home/comfortga/public_html/bootstrap/cache/compiled.php:8207 #12 Illuminate\Routing\Router:dispatch in /home/comfortga/public_html/bootstrap/cache/compiled.php:2419 #11 Illuminate\Foundation\Http\Kernel:Illuminate\Foundation\Http\{closure} in /home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:52 #10 call_user_func in /home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:52 #9 Illuminate\Routing\Pipeline:Illuminate\Routing\{closure} in /home/comfortga/public_html/bootstrap/cache/compiled.php:3286 #8 Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode:handle in /home/comfortga/public_html/bootstrap/cache/compiled.php:9963 #7 call_user_func_array in /home/comfortga/public_html/bootstrap/cache/compiled.php:9963 #6 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:32 #5 call_user_func in /home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:32 #4 Illuminate\Routing\Pipeline:Illuminate\Routing\{closure} in /home/comfortga/public_html/bootstrap/cache/compiled.php:9948 #3 call_user_func in /home/comfortga/public_html/bootstrap/cache/compiled.php:9948 #2 Illuminate\Pipeline\Pipeline:then in /home/comfortga/public_html/bootstrap/cache/compiled.php:2366 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/comfortga/public_html/bootstrap/cache/compiled.php:2350 #0 Illuminate\Foundation\Http\Kernel:handle in /home/comfortga/public_html/public/index.php:52
Stack frames (17)
16
Symfony\Component\HttpKernel\Exception\NotFoundHttpException
/bootstrap/cache/compiled.php8912
15
Illuminate\Routing\RouteCollection match
/bootstrap/cache/compiled.php8264
14
Illuminate\Routing\Router findRoute
/bootstrap/cache/compiled.php8212
13
Illuminate\Routing\Router dispatchToRoute
/bootstrap/cache/compiled.php8207
12
Illuminate\Routing\Router dispatch
/bootstrap/cache/compiled.php2419
11
Illuminate\Foundation\Http\Kernel Illuminate\Foundation\Http\{closure}
/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php52
10
call_user_func
/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php52
9
Illuminate\Routing\Pipeline Illuminate\Routing\{closure}
/bootstrap/cache/compiled.php3286
8
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode handle
/bootstrap/cache/compiled.php9963
7
call_user_func_array
/bootstrap/cache/compiled.php9963
6
Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php32
5
call_user_func
/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php32
4
Illuminate\Routing\Pipeline Illuminate\Routing\{closure}
/bootstrap/cache/compiled.php9948
3
call_user_func
/bootstrap/cache/compiled.php9948
2
Illuminate\Pipeline\Pipeline then
/bootstrap/cache/compiled.php2366
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/bootstrap/cache/compiled.php2350
0
Illuminate\Foundation\Http\Kernel handle
/public/index.php52
/home/comfortga/public_html/bootstrap/cache/compiled.php
                $this->nameList[$route->getName()] = $route;
            }
        }
    }
    protected function addToActionList($action, $route)
    {
        $this->actionList[trim($action['controller'], '\\')] = $route;
    }
    public function match(Request $request)
    {
        $routes = $this->get($request->getMethod());
        $route = $this->check($routes, $request);
        if (!is_null($route)) {
            return $route->bind($request);
        }
        $others = $this->checkForAlternateVerbs($request);
        if (count($others) > 0) {
            return $this->getRouteForMethods($request, $others);
        }
        throw new NotFoundHttpException();
    }
    protected function checkForAlternateVerbs($request)
    {
        $methods = array_diff(Router::$verbs, [$request->getMethod()]);
        $others = [];
        foreach ($methods as $method) {
            if (!is_null($this->check($this->get($method), $request, false))) {
                $others[] = $method;
            }
        }
        return $others;
    }
    protected function getRouteForMethods($request, array $methods)
    {
        if ($request->method() == 'OPTIONS') {
            return (new Route('OPTIONS', $request->path(), function () use($methods) {
                return new Response('', 200, ['Allow' => implode(',', $methods)]);
            }))->bind($request);
        }
        $this->methodNotAllowed($methods);
Arguments
  1. ""
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    }
    protected function parseMiddlewareGroup($name)
    {
        $results = [];
        foreach ($this->middlewareGroups[$name] as $middleware) {
            if (isset($this->middlewareGroups[$middleware])) {
                $results = array_merge($results, $this->parseMiddlewareGroup($middleware));
                continue;
            }
            list($middleware, $parameters) = array_pad(explode(':', $middleware, 2), 2, null);
            if (isset($this->middleware[$middleware])) {
                $middleware = $this->middleware[$middleware];
            }
            $results[] = $middleware . ($parameters ? ':' . $parameters : '');
        }
        return $results;
    }
    protected function findRoute($request)
    {
        $this->current = $route = $this->routes->match($request);
        $this->container->instance('Illuminate\\Routing\\Route', $route);
        return $this->substituteBindings($route);
    }
    protected function substituteBindings($route)
    {
        foreach ($route->parameters() as $key => $value) {
            if (isset($this->binders[$key])) {
                $route->setParameter($key, $this->performBinding($key, $value, $route));
            }
        }
        $this->substituteImplicitBindings($route);
        return $route;
    }
    protected function substituteImplicitBindings($route)
    {
        $parameters = $route->parameters();
        foreach ($route->signatureParameters(Model::class) as $parameter) {
            $class = $parameter->getClass();
            if (array_key_exists($parameter->name, $parameters) && !$route->getParameter($parameter->name) instanceof Model) {
                $method = $parameter->isDefaultValueAvailable() ? 'first' : 'firstOrFail';
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
        if (!empty($this->groupStack)) {
            $action['uses'] = $this->prependGroupUses($action['uses']);
        }
        $action['controller'] = $action['uses'];
        return $action;
    }
    protected function prependGroupUses($uses)
    {
        $group = end($this->groupStack);
        return isset($group['namespace']) && strpos($uses, '\\') !== 0 ? $group['namespace'] . '\\' . $uses : $uses;
    }
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->dispatchToRoute($request);
        return $this->prepareResponse($request, $response);
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $request->setRouteResolver(function () use($route) {
            return $route;
        });
        $this->events->fire(new Events\RouteMatched($route, $request));
        $response = $this->runRouteWithinStack($route, $request);
        return $this->prepareResponse($request, $response);
    }
    protected function runRouteWithinStack(Route $route, Request $request)
    {
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddlewares($route);
        return (new Pipeline($this->container))->send($request)->through($middleware)->then(function ($request) use($route) {
            return $this->prepareResponse($request, $route->run($request));
        });
    }
    public function gatherRouteMiddlewares(Route $route)
    {
        return Collection::make($route->middleware())->map(function ($name) {
            return Collection::make($this->resolveMiddlewareClassName($name));
        })->flatten()->all();
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    protected function convertToControllerAction($action)
    {
        if (is_string($action)) {
            $action = ['uses' => $action];
        }
        if (!empty($this->groupStack)) {
            $action['uses'] = $this->prependGroupUses($action['uses']);
        }
        $action['controller'] = $action['uses'];
        return $action;
    }
    protected function prependGroupUses($uses)
    {
        $group = end($this->groupStack);
        return isset($group['namespace']) && strpos($uses, '\\') !== 0 ? $group['namespace'] . '\\' . $uses : $uses;
    }
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->dispatchToRoute($request);
        return $this->prepareResponse($request, $response);
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $request->setRouteResolver(function () use($route) {
            return $route;
        });
        $this->events->fire(new Events\RouteMatched($route, $request));
        $response = $this->runRouteWithinStack($route, $request);
        return $this->prepareResponse($request, $response);
    }
    protected function runRouteWithinStack(Route $route, Request $request)
    {
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddlewares($route);
        return (new Pipeline($this->container))->send($request)->through($middleware)->then(function ($request) use($route) {
            return $this->prepareResponse($request, $route->run($request));
        });
    }
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
        return $this;
    }
    public function pushMiddleware($middleware)
    {
        if (array_search($middleware, $this->middleware) === false) {
            $this->middleware[] = $middleware;
        }
        return $this;
    }
    public function bootstrap()
    {
        if (!$this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
            return $this->router->dispatch($request);
        };
    }
    public function hasMiddleware($middleware)
    {
        return in_array($middleware, $this->middleware);
    }
    protected function bootstrappers()
    {
        return $this->bootstrappers;
    }
    protected function reportException(Exception $e)
    {
        $this->app[ExceptionHandler::class]->report($e);
    }
    protected function renderException($request, Exception $e)
    {
        return $this->app[ExceptionHandler::class]->render($request, $e);
    }
    public function getApplication()
    {
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
                } catch (Exception $e) {
                    return $this->handleException($passable, $e);
                } catch (Throwable $e) {
                    return $this->handleException($passable, new FatalThrowableError($e));
                }
            };
        };
    }
 
    /**
     * Get the initial slice to begin the stack call.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use ($destination) {
            try {
                return call_user_func($destination, $passable);
            } catch (Exception $e) {
                return $this->handleException($passable, $e);
            } catch (Throwable $e) {
                return $this->handleException($passable, new FatalThrowableError($e));
            }
        };
    }
 
    /**
     * Handle the given exception.
     *
     * @param  mixed  $passable
     * @param  \Exception  $e
     * @return mixed
     *
     * @throws \Exception
     */
    protected function handleException($passable, Exception $e)
    {
        if (! $this->container->bound(ExceptionHandler::class) || ! $passable instanceof Request) {
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
                } catch (Exception $e) {
                    return $this->handleException($passable, $e);
                } catch (Throwable $e) {
                    return $this->handleException($passable, new FatalThrowableError($e));
                }
            };
        };
    }
 
    /**
     * Get the initial slice to begin the stack call.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use ($destination) {
            try {
                return call_user_func($destination, $passable);
            } catch (Exception $e) {
                return $this->handleException($passable, $e);
            } catch (Throwable $e) {
                return $this->handleException($passable, new FatalThrowableError($e));
            }
        };
    }
 
    /**
     * Handle the given exception.
     *
     * @param  mixed  $passable
     * @param  \Exception  $e
     * @return mixed
     *
     * @throws \Exception
     */
    protected function handleException($passable, Exception $e)
    {
        if (! $this->container->bound(ExceptionHandler::class) || ! $passable instanceof Request) {
Arguments
  1. Closure {#30
      class: "Illuminate\Foundation\Http\Kernel"
      this: Kernel {#25 …}
      parameters: {
        $request: {}
      }
      file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
      line: "2417 to 2420"
    }
    
  2. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
}
}
 
namespace Illuminate\Foundation\Http\Middleware {
use Closure;
use Illuminate\Contracts\Foundation\Application;
use Symfony\Component\HttpKernel\Exception\HttpException;
class CheckForMaintenanceMode
{
    protected $app;
    public function __construct(Application $app)
    {
        $this->app = $app;
    }
    public function handle($request, Closure $next)
    {
        if ($this->app->isDownForMaintenance()) {
            throw new HttpException(503);
        }
        return $next($request);
    }
}
}
 
namespace Symfony\Component\HttpFoundation {
use Symfony\Component\HttpFoundation\Exception\ConflictingHeadersException;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
class Request
{
    const HEADER_FORWARDED = 'forwarded';
    const HEADER_CLIENT_IP = 'client_ip';
    const HEADER_CLIENT_HOST = 'client_host';
    const HEADER_CLIENT_PROTO = 'client_proto';
    const HEADER_CLIENT_PORT = 'client_port';
    const METHOD_HEAD = 'HEAD';
    const METHOD_GET = 'GET';
    const METHOD_POST = 'POST';
    const METHOD_PUT = 'PUT';
    const METHOD_PATCH = 'PATCH';
    const METHOD_DELETE = 'DELETE';
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } elseif (!is_object($pipe)) {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    $pipe = $this->container->make($name);
                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    $parameters = [$passable, $stack];
                }
                return call_user_func_array([$pipe, $this->method], $parameters);
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use($destination) {
            return call_user_func($destination, $passable);
        };
    }
    protected function parsePipeString($pipe)
    {
        list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
        if (is_string($parameters)) {
            $parameters = explode(',', $parameters);
        }
        return [$name, $parameters];
    }
}
}
 
Arguments
  1. Request {#40}
    
  2. Closure {#255
      class: "Illuminate\Routing\Pipeline"
      this: Pipeline {#28 …}
      parameters: {
        $passable: {}
      }
      use: {
        $destination: Closure {#30
          class: "Illuminate\Foundation\Http\Kernel"
          this: Kernel {#25 …}
          parameters: {
            $request: {}
          }
          file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
          line: "2417 to 2420"
        }
      }
      file: "/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php"
      line: "50 to 58"
    }
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } elseif (!is_object($pipe)) {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    $pipe = $this->container->make($name);
                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    $parameters = [$passable, $stack];
                }
                return call_user_func_array([$pipe, $this->method], $parameters);
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use($destination) {
            return call_user_func($destination, $passable);
        };
    }
    protected function parsePipeString($pipe)
    {
        list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
        if (is_string($parameters)) {
            $parameters = explode(',', $parameters);
        }
        return [$name, $parameters];
    }
}
}
 
Arguments
  1. array:2 [
      0 => CheckForMaintenanceMode {#269}
      1 => "handle"
    ]
    
  2. array:2 [
      0 => Request {#40}
      1 => Closure {#255
        class: "Illuminate\Routing\Pipeline"
        this: Pipeline {#28 …}
        parameters: {
          $passable: {}
        }
        use: {
          $destination: Closure {#30
            class: "Illuminate\Foundation\Http\Kernel"
            this: Kernel {#25 …}
            parameters: {
              $request: {}
            }
            file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
            line: "2417 to 2420"
          }
        }
        file: "/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php"
        line: "50 to 58"
      }
    ]
    
/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
/**
 * This extended pipeline catches any exceptions that occur during each slice.
 *
 * The exceptions are converted to HTTP responses for proper middleware handling.
 */
class Pipeline extends BasePipeline
{
    /**
     * Get a Closure that represents a slice of the application onion.
     *
     * @return \Closure
     */
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                try {
                    $slice = parent::getSlice();
 
                    return call_user_func($slice($stack, $pipe), $passable);
                } catch (Exception $e) {
                    return $this->handleException($passable, $e);
                } catch (Throwable $e) {
                    return $this->handleException($passable, new FatalThrowableError($e));
                }
            };
        };
    }
 
    /**
     * Get the initial slice to begin the stack call.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use ($destination) {
            try {
                return call_user_func($destination, $passable);
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
/**
 * This extended pipeline catches any exceptions that occur during each slice.
 *
 * The exceptions are converted to HTTP responses for proper middleware handling.
 */
class Pipeline extends BasePipeline
{
    /**
     * Get a Closure that represents a slice of the application onion.
     *
     * @return \Closure
     */
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                try {
                    $slice = parent::getSlice();
 
                    return call_user_func($slice($stack, $pipe), $passable);
                } catch (Exception $e) {
                    return $this->handleException($passable, $e);
                } catch (Throwable $e) {
                    return $this->handleException($passable, new FatalThrowableError($e));
                }
            };
        };
    }
 
    /**
     * Get the initial slice to begin the stack call.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use ($destination) {
            try {
                return call_user_func($destination, $passable);
Arguments
  1. Closure {#265
      class: "Illuminate\Pipeline\Pipeline"
      this: Pipeline {#28 …}
      parameters: {
        $passable: {}
      }
      use: {
        $stack: Closure {#255
          class: "Illuminate\Routing\Pipeline"
          this: Pipeline {#28 …}
          parameters: {
            $passable: {}
          }
          use: {
            $destination: Closure {#30
              class: "Illuminate\Foundation\Http\Kernel"
              this: Kernel {#25 …}
              parameters: {
                $request: {}
              }
              file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
              line: "2417 to 2420"
            }
          }
          file: "/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php"
          line: "50 to 58"
        }
        $pipe: "Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode"
      }
      file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
      line: "9953 to 9964"
    }
    
  2. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    public function send($passable)
    {
        $this->passable = $passable;
        return $this;
    }
    public function through($pipes)
    {
        $this->pipes = is_array($pipes) ? $pipes : func_get_args();
        return $this;
    }
    public function via($method)
    {
        $this->method = $method;
        return $this;
    }
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } elseif (!is_object($pipe)) {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    $pipe = $this->container->make($name);
                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    $parameters = [$passable, $stack];
                }
                return call_user_func_array([$pipe, $this->method], $parameters);
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    public function send($passable)
    {
        $this->passable = $passable;
        return $this;
    }
    public function through($pipes)
    {
        $this->pipes = is_array($pipes) ? $pipes : func_get_args();
        return $this;
    }
    public function via($method)
    {
        $this->method = $method;
        return $this;
    }
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } elseif (!is_object($pipe)) {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    $pipe = $this->container->make($name);
                    $parameters = array_merge([$passable, $stack], $parameters);
                } else {
                    $parameters = [$passable, $stack];
                }
                return call_user_func_array([$pipe, $this->method], $parameters);
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
Arguments
  1. Closure {#261
      class: "Illuminate\Routing\Pipeline"
      this: Pipeline {#28 …}
      parameters: {
        $passable: {}
      }
      use: {
        $stack: Closure {#255
          class: "Illuminate\Routing\Pipeline"
          this: Pipeline {#28 …}
          parameters: {
            $passable: {}
          }
          use: {
            $destination: Closure {#30
              class: "Illuminate\Foundation\Http\Kernel"
              this: Kernel {#25 …}
              parameters: {
                $request: {}
              }
              file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
              line: "2417 to 2420"
            }
          }
          file: "/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php"
          line: "50 to 58"
        }
        $pipe: "Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode"
      }
      file: "/home/comfortga/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php"
      line: "28 to 38"
    }
    
  2. Request {#40}
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    {
        try {
            $request->enableHttpMethodParameterOverride();
            $response = $this->sendRequestThroughRouter($request);
        } catch (Exception $e) {
            $this->reportException($e);
            $response = $this->renderException($request, $e);
        } catch (Throwable $e) {
            $this->reportException($e = new FatalThrowableError($e));
            $response = $this->renderException($request, $e);
        }
        $this->app['events']->fire('kernel.handled', [$request, $response]);
        return $response;
    }
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
        Facade::clearResolvedInstance('request');
        $this->bootstrap();
        return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());
    }
    public function terminate($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge($this->gatherRouteMiddlewares($request), $this->middleware);
        foreach ($middlewares as $middleware) {
            list($name, $parameters) = $this->parseMiddleware($middleware);
            $instance = $this->app->make($name);
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
        $this->app->terminate();
    }
    protected function gatherRouteMiddlewares($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddlewares($route);
        }
        return [];
    }
Arguments
  1. Closure {#30
      class: "Illuminate\Foundation\Http\Kernel"
      this: Kernel {#25 …}
      parameters: {
        $request: {}
      }
      file: "/home/comfortga/public_html/bootstrap/cache/compiled.php"
      line: "2417 to 2420"
    }
    
/home/comfortga/public_html/bootstrap/cache/compiled.php
    protected $bootstrappers = ['Illuminate\\Foundation\\Bootstrap\\DetectEnvironment', 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration', 'Illuminate\\Foundation\\Bootstrap\\ConfigureLogging', 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades', 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders', 'Illuminate\\Foundation\\Bootstrap\\BootProviders'];
    protected $middleware = [];
    protected $middlewareGroups = [];
    protected $routeMiddleware = [];
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;
        foreach ($this->middlewareGroups as $key => $middleware) {
            $router->middlewareGroup($key, $middleware);
        }
        foreach ($this->routeMiddleware as $key => $middleware) {
            $router->middleware($key, $middleware);
        }
    }
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
            $response = $this->sendRequestThroughRouter($request);
        } catch (Exception $e) {
            $this->reportException($e);
            $response = $this->renderException($request, $e);
        } catch (Throwable $e) {
            $this->reportException($e = new FatalThrowableError($e));
            $response = $this->renderException($request, $e);
        }
        $this->app['events']->fire('kernel.handled', [$request, $response]);
        return $response;
    }
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
        Facade::clearResolvedInstance('request');
        $this->bootstrap();
        return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());
    }
    public function terminate($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge($this->gatherRouteMiddlewares($request), $this->middleware);
Arguments
  1. Request {#40}
    
/home/comfortga/public_html/public/index.php
*/
 
$app = require_once __DIR__.'/../bootstrap/app.php';
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Request {#40}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"*/*"
CONTENT_LENGTH
"0"
HTTP_HOST
"comfortga.com.br"
HTTP_USER_AGENT
"claudebot"
HTTP_X_HTTPS
"1"
REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID
"ZfkDW_47XdSaNhj1eViqOgAAADg"
REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL
"/produtos/1/2/1"
REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI
"https://comfortga.com.br/produtos/1/2/1"
REDIRECT_REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI
"comfortga.com.br"
REDIRECT_REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_REDIRECT_UNIQUE_ID
"ZfkDW_47XdSaNhj1eViqOgAAADg"
REDIRECT_REDIRECT_SCRIPT_URL
"/produtos/1/2/1"
REDIRECT_REDIRECT_SCRIPT_URI
"https://comfortga.com.br/produtos/1/2/1"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SSL_TLS_SNI
"comfortga.com.br"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"ZfkDW_47XdSaNhj1eViqOgAAADg"
REDIRECT_SCRIPT_URL
"/produtos/1/2/1"
REDIRECT_SCRIPT_URI
"https://comfortga.com.br/produtos/1/2/1"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"comfortga.com.br"
REDIRECT_STATUS
"200"
UNIQUE_ID
"ZfkDW_47XdSaNhj1eViqOgAAADg"
SCRIPT_URL
"/produtos/1/2/1"
SCRIPT_URI
"https://comfortga.com.br/produtos/1/2/1"
HTTPS
"on"
SSL_TLS_SNI
"comfortga.com.br"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"comfortga.com.br"
SERVER_ADDR
"192.169.93.210"
SERVER_PORT
"443"
REMOTE_ADDR
"3.239.214.173"
DOCUMENT_ROOT
"/home/comfortga/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/comfortga/public_html"
SERVER_ADMIN
"webmaster@comfortga.com.br"
SCRIPT_FILENAME
"/home/comfortga/public_html/public/index.php"
REMOTE_PORT
"33938"
REDIRECT_URL
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/produtos/1/2//1"
SCRIPT_NAME
"/public/index.php"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1710818139.605
REQUEST_TIME
1710818139
APP_ENV
"local"
APP_KEY
"base64:HpYkDDj2BwjpM9+KBlRsQhQDABkSeBpwF4iOuwKePvI="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"comfortga_comfort_site2022"
DB_USERNAME
"comfortga_user"
DB_PASSWORD
"[FazhJCY+82}"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
FRAMEWORK_VERSION
"1.1"
DEVELOPER_NAME
"Dev"
DEVELOPER_WEBSITE
"dev@system.com"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.comfortga.com.br"
MAIL_PORT
"587"
MAIL_USERNAME
"site@comfortga.com.br"
MAIL_PASSWORD
"{b4RzeGL]j_x"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"webmaster@site.com.br"
MAIL_FROM_NAME
"webmaster"
MAIL_SENDER
"contato@comfortga.com.br"
MAIL_SENDER_NAME
"Comfort GA"
RECAPTCHA_SITE
""
RECAPTCHA_SECRETA
""
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
APP_ENV
"local"
APP_KEY
"base64:HpYkDDj2BwjpM9+KBlRsQhQDABkSeBpwF4iOuwKePvI="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"comfortga_comfort_site2022"
DB_USERNAME
"comfortga_user"
DB_PASSWORD
"[FazhJCY+82}"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
FRAMEWORK_VERSION
"1.1"
DEVELOPER_NAME
"Dev"
DEVELOPER_WEBSITE
"dev@system.com"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.comfortga.com.br"
MAIL_PORT
"587"
MAIL_USERNAME
"site@comfortga.com.br"
MAIL_PASSWORD
"{b4RzeGL]j_x"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"webmaster@site.com.br"
MAIL_FROM_NAME
"webmaster"
MAIL_SENDER
"contato@comfortga.com.br"
MAIL_SENDER_NAME
"Comfort GA"
RECAPTCHA_SITE
""
RECAPTCHA_SECRETA
""
0. Whoops\Handler\PrettyPageHandler