11. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­bootstrap/­compiled.php3723
10. Illuminate\Routing\RouteCollection match
…/­bootstrap/­compiled.php3045
9. Illuminate\Routing\Router findRoute
…/­bootstrap/­compiled.php3033
8. Illuminate\Routing\Router dispatchToRoute
…/­bootstrap/­compiled.php3025
7. Illuminate\Routing\Router dispatch
…/­bootstrap/­compiled.php702
6. Illuminate\Foundation\Application dispatch
…/­bootstrap/­compiled.php678
5. Illuminate\Foundation\Application handle
…/­bootstrap/­compiled.php5797
4. Illuminate\Session\Middleware handle
…/­bootstrap/­compiled.php6404
3. Illuminate\Cookie\Queue handle
…/­bootstrap/­compiled.php6351
2. Illuminate\Cookie\Guard handle
…/­bootstrap/­compiled.php8430
1. Stack\StackedHttpKernel handle
…/­bootstrap/­compiled.php639
0. Illuminate\Foundation\Application run
…/­index.php66

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

Callstack information; navigate with mouse or keyboard using Ctrl+↑ or Ctrl+↓
Copy-to-clipboard button
Exception message and its type
Code snippet where the error was thrown
Server state information
Application provided context information
Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "" Stacktrace: #11 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /home/gensiya/public_html/bootstrap/compiled.php:3723 #10 Illuminate\Routing\RouteCollection:match in /home/gensiya/public_html/bootstrap/compiled.php:3045 #9 Illuminate\Routing\Router:findRoute in /home/gensiya/public_html/bootstrap/compiled.php:3033 #8 Illuminate\Routing\Router:dispatchToRoute in /home/gensiya/public_html/bootstrap/compiled.php:3025 #7 Illuminate\Routing\Router:dispatch in /home/gensiya/public_html/bootstrap/compiled.php:702 #6 Illuminate\Foundation\Application:dispatch in /home/gensiya/public_html/bootstrap/compiled.php:678 #5 Illuminate\Foundation\Application:handle in /home/gensiya/public_html/bootstrap/compiled.php:5797 #4 Illuminate\Session\Middleware:handle in /home/gensiya/public_html/bootstrap/compiled.php:6404 #3 Illuminate\Cookie\Queue:handle in /home/gensiya/public_html/bootstrap/compiled.php:6351 #2 Illuminate\Cookie\Guard:handle in /home/gensiya/public_html/bootstrap/compiled.php:8430 #1 Stack\StackedHttpKernel:handle in /home/gensiya/public_html/bootstrap/compiled.php:639 #0 Illuminate\Foundation\Application:run in /home/gensiya/public_html/index.php:66

        if (!is_null($route)) {
            return $route->bind($request);
        }
        $others = $this->checkForAlternateVerbs($request);
        if (count($others) > 0) {
            return $this->getOtherMethodsRoute($request, $others);
        }
        throw new NotFoundHttpException();
    }
    protected function checkForAlternateVerbs($request)
        }
        $response = $this->prepareResponse($request, $response);
        $this->callRouteAfter($route, $request, $response);
        return $response;
    }
    protected function findRoute($request)
    {
        $this->current = $route = $this->routes->match($request);
        return $this->substituteBindings($route);
    }
        }
        $response = $this->prepareResponse($request, $response);
        $this->callFilter('after', $request, $response);
        return $response;
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        return isset($group['namespace']) ? $group['namespace'] . '\\' . $uses : $uses;
    }
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->callFilter('before', $request);
        if (is_null($response)) {
            $response = $this->dispatchToRoute($request);
        }
        $response = $this->prepareResponse($request, $response);
            if (!is_null($response)) {
                return $this->prepareResponse($response, $request);
            }
        }
        if ($this->runningUnitTests() && !$this['session']->isStarted()) {
            $this['session']->start();
        }
        return $this['router']->dispatch($this->prepareRequest($request));
    }
    public function terminate(SymfonyRequest $request, SymfonyResponse $response)
        });
    }
    public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        try {
            $this->refreshRequest($request = Request::createFromBase($request));
            $this->boot();
            return $this->dispatch($request);
        } catch (\Exception $e) {
            if (!$catch || $this->runningUnitTests()) {
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $this->checkRequestForArraySessions($request);
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);
            $request->setSession($session);
        }
        $response = $this->app->handle($request, $type, $catch);
        if ($this->sessionConfigured()) {
            $this->closeSession($session);
    public function __construct(HttpKernelInterface $app, CookieJar $cookies)
    {
        $this->app = $app;
        $this->cookies = $cookies;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $response = $this->app->handle($request, $type, $catch);
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
    public function __construct(HttpKernelInterface $app, Encrypter $encrypter)
    {
        $this->app = $app;
        $this->encrypter = $encrypter;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
    }
    protected function decrypt(Request $request)
    public function __construct(HttpKernelInterface $app, array $middlewares)
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
    public function terminate(Request $request, Response $response)
        if ($this->isBooted()) {
            $this->fireAppCallbacks(array($callback));
        }
    }
    public function run(SymfonyRequest $request = null)
    {
        $request = $request ?: $this['request'];
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
| 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 application we have whipped up for them.
|
*/
 
$app->run();
 
 
empty
empty
empty
empty
empty
Key Value
USER gensiya
HOME /home/gensiya
SCRIPT_NAME /index.php
REQUEST_URI /elements/buttons
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/2.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /elements/buttons
REMOTE_PORT 41656
SCRIPT_FILENAME /home/gensiya/public_html/index.php
SERVER_ADMIN webmaster@modyapi.gensiya.com
CONTEXT_DOCUMENT_ROOT /home/gensiya/public_html
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /home/gensiya/public_html
REMOTE_ADDR 3.95.233.107
SERVER_PORT 443
SERVER_ADDR 194.163.130.97
SERVER_NAME www.modyapi.com.tr
SERVER_SOFTWARE Apache/2.4.58
SERVER_SIGNATURE
PATH /usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin
HTTP_HOST www.modyapi.com.tr
HTTP_REFERER https://www.modyapi.com.tr/elements/buttons/
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
proxy-nokeepalive 1
H2_STREAM_TAG 29858-116-5
H2_STREAM_ID 5
H2_PUSHED_ON
H2_PUSHED
H2_PUSH off
H2PUSH off
HTTP2 on
SSL_TLS_SNI www.modyapi.com.tr
HTTPS on
UNIQUE_ID ZflngmVOg3Ik9irXP6TKNgABSBQ
REDIRECT_STATUS 200
REDIRECT_H2_STREAM_TAG 29858-116-5
REDIRECT_H2_STREAM_ID 5
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSH off
REDIRECT_H2PUSH off
REDIRECT_HTTP2 on
REDIRECT_SSL_TLS_SNI www.modyapi.com.tr
REDIRECT_HTTPS on
REDIRECT_UNIQUE_ID ZflngmVOg3Ik9irXP6TKNgABSBQ
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710843778.3285
REQUEST_TIME 1710843778
argv Array ( )
argc 0
empty
0. Whoops\Handler\PrettyPageHandler