5. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­bootstrap/­compiled.php4946
4. Illuminate\Routing\Router handleRoutingException
…/­bootstrap/­compiled.php4791
3. Illuminate\Routing\Router findRoute
…/­bootstrap/­compiled.php4779
2. Illuminate\Routing\Router dispatch
…/­bootstrap/­compiled.php483
1. Illuminate\Foundation\Application dispatch
…/­bootstrap/­compiled.php472
0. Illuminate\Foundation\Application run
…/­public/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

            $value = new Response($value);
        }
        return $value->prepare($request);
    }
    protected function handleRoutingException(\Exception $e)
    {
        if ($e instanceof ResourceNotFoundException) {
            throw new NotFoundHttpException($e->getMessage());
        } elseif ($e instanceof MethodNotAllowedException) {
            $allowed = $e->getAllowedMethods();
    }
    protected function findRoute(Request $request)
    {
        try {
            $path = $request->getPathInfo();
            $parameters = $this->getUrlMatcher($request)->match($path);
        } catch (ExceptionInterface $e) {
            $this->handleRoutingException($e);
        }
        $route = $this->routes->get($parameters['_route']);
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->callGlobalFilter($request, 'before');
        if (!is_null($response)) {
            $response = $this->prepare($response, $request);
        } else {
            $this->currentRoute = $route = $this->findRoute($request);
            $response = $route->run($request);
        }
    }
    public function dispatch(Request $request)
    {
        if ($this->isDownForMaintenance()) {
            $response = $this['events']->until('illuminate.app.down');
            return $this->prepareResponse($response, $request);
        } else {
            return $this['router']->dispatch($this->prepareRequest($request));
        }
    }
            $this->fireAppCallbacks($this->shutdownCallbacks);
        } else {
            $this->shutdownCallbacks[] = $callback;
        }
    }
    public function run()
    {
        $response = $this->dispatch($this['request']);
        $this['router']->callCloseFilter($this['request'], $response);
        $response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful applications we have created for them.
|
*/
 
$app->run();
 
/*
Key Value
REDIRECT_STATUS 200
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST www.expressoazul.com.br
PATH /sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.expressoazul.com.br
SERVER_ADDR 172.19.31.1
SERVER_PORT 80
REMOTE_ADDR 54.173.43.215
DOCUMENT_ROOT /home/httpd/expressoazul/public
SERVER_ADMIN postmaster@bentotransportes.com.br
SCRIPT_FILENAME /home/httpd/expressoazul/public/index.php
REMOTE_PORT 43224
REDIRECT_URL /index.htm
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /index.htm
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711648007.43
REQUEST_TIME 1711648007
argv Array ( )
argc 0
empty
empty
empty
empty
Key Value
_sf2_attributes Array ( [_token] => XNIaaOcYPklpPzdv8hMYsAQtIdzALLVrt9kqwzhq )
_sf2_flashes Array ( )
_sf2_meta Array ( [u] => 1711648007 [c] => 1711648007 [l] => 7200 )
Key Value
CONSOLE /dev/console
SELINUX_INIT YES
LD_LIBRARY_PATH /usr/lib:
INIT_VERSION sysvinit-2.85
AUTOBOOT YES
PATH /sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
runlevel 3
RUNLEVEL 3
PWD /
LANG pt_BR.UTF-8
previous N
PREVLEVEL N
SHLVL 3
HOME /
BOOT_IMAGE crypto
_ /usr/sbin/httpd
0. Whoops\Handler\PrettyPageHandler