13. Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php210
12. Illuminate\Routing\RouteCollection methodNotAllowed
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php197
11. Illuminate\Routing\RouteCollection getOtherMethodsRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php145
10. Illuminate\Routing\RouteCollection match
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1054
9. Illuminate\Routing\Router findRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1022
8. Illuminate\Routing\Router dispatchToRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1001
7. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php775
6. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php745
5. Illuminate\Foundation\Application handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php641
0. Illuminate\Foundation\Application run
/­home/­christybyoga/­public_html/­yogaminded/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException

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\MethodNotAllowedHttpException thrown with message "" Stacktrace: #13 Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:210 #12 Illuminate\Routing\RouteCollection:methodNotAllowed in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:197 #11 Illuminate\Routing\RouteCollection:getOtherMethodsRoute in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:145 #10 Illuminate\Routing\RouteCollection:match in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1054 #9 Illuminate\Routing\Router:findRoute in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1022 #8 Illuminate\Routing\Router:dispatchToRoute in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1001 #7 Illuminate\Routing\Router:dispatch in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:775 #6 Illuminate\Foundation\Application:dispatch in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:745 #5 Illuminate\Foundation\Application:handle in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Session/Middleware.php:72 #4 Illuminate\Session\Middleware:handle in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php:47 #3 Illuminate\Cookie\Queue:handle in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php:51 #2 Illuminate\Cookie\Guard:handle in /home/christybyoga/myapps/yogaminded/vendor/stack/builder/src/Stack/StackedHttpKernel.php:23 #1 Stack\StackedHttpKernel:handle in /home/christybyoga/myapps/yogaminded/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /home/christybyoga/public_html/yogaminded/index.php:49

	 * @param  array  $others
	 * @return void
	 *
	 * @throws \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
	 */
	protected function methodNotAllowed(array $others)
	{
		throw new MethodNotAllowedHttpException($others);
	}

			return (new Route('OPTIONS', $request->path(), function() use ($others)
			{
				return new Response('', 200, array('Allow' => implode(',', $others)));

			}))->bind($request);
		}

		$this->methodNotAllowed($others);
	}

		// If no route was found, we will check if a matching is route is specified on
		// 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->getOtherMethodsRoute($request, $others);
		}

	 * Find the route matching a given request.
	 *
	 * @param  \Illuminate\Http\Request  $request
	 * @return \Illuminate\Routing\Route
	 */
	protected function findRoute($request)
	{
		$this->current = $route = $this->routes->match($request);
 
		return $this->substituteBindings($route);
	 * 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);
 
		$this->events->fire('router.matched', array($route, $request));
		// If no response was returned from the before filter, we will call the proper
		// route instance to get the response. If no route is found a response will
		// still get returned based on why no routes were found for this request.
		$response = $this->callFilter('before', $request);
 
		if (is_null($response))
		{
			$response = $this->dispatchToRoute($request);
		}
 
		}
 
		if ($this->runningUnitTests() && ! $this['session']->isStarted())
		{
			$this['session']->start();
		}
 
		return $this['router']->dispatch($this->prepareRequest($request));
	}
 
	{
		try
		{
			$this->refreshRequest($request = Request::createFromBase($request));
 
			$this->boot();
 
			return $this->dispatch($request);
		}
		catch (\Exception $e)
		if ($this->sessionConfigured())
		{
			$session = $this->startSession($request);
 
			$request->setSession($session);
		}
 
		$response = $this->app->handle($request, $type, $catch);
 
		// Again, if the session has been configured we will need to close out the session
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$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 application we have whipped up for them.
|
*/
 
$app->run();
 
empty
empty
empty
empty
empty
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
HTTP_ACCEPT */*
CONTENT_LENGTH 0
HTTP_HOST yogaminded.com
HTTP_REFERER https://yogaminded.com/contact/
HTTP_USER_AGENT claudebot
HTTP_X_HTTPS 1
REDIRECT_UNIQUE_ID ZfkwxXnWevmpBIAS0EGlowAAgRU
REDIRECT_SCRIPT_URL /contact
REDIRECT_SCRIPT_URI https://yogaminded.com/contact
REDIRECT_USER_ID 2283842
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI yogaminded.com
REDIRECT_HTTP2 on
REDIRECT_H2PUSH off
REDIRECT_H2_PUSH off
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_STREAM_ID 5
REDIRECT_H2_STREAM_TAG 4011514-2375-5
REDIRECT_STATUS 200
UNIQUE_ID ZfkwxXnWevmpBIAS0EGlowAAgRU
SCRIPT_URL /contact
SCRIPT_URI https://yogaminded.com/contact
USER_ID 2283842
HTTPS on
SSL_TLS_SNI yogaminded.com
HTTP2 on
H2PUSH off
H2_PUSH off
H2_PUSHED
H2_PUSHED_ON
H2_STREAM_ID 5
H2_STREAM_TAG 4011514-2375-5
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME yogaminded.com
SERVER_ADDR 107.180.56.154
SERVER_PORT 443
REMOTE_ADDR 54.226.222.183
DOCUMENT_ROOT /home/christybyoga/public_html/yogaminded
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/christybyoga/public_html/yogaminded
SERVER_ADMIN webmaster@yogaminded.workinginforhealth.com
SCRIPT_FILENAME /home/christybyoga/public_html/yogaminded/index.php
REMOTE_PORT 36140
REDIRECT_URL /contact
SERVER_PROTOCOL HTTP/2.0
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /contact
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710829765.9772
REQUEST_TIME 1710829765
DB_HOST localhost
DB_NAME yogaminded_live
DB_USERNAME yoga_admin_live
DB_PASSWORD B_4FXRBqLy,=
PAYPAL_CLENT_ID AftbmV3Bp-U5ViCa4dC8k2pHz44RcHQ1_arKe71M9BzGEAx7XKpyg6b6ZklXXsrWPDIMDcVdrKqPjWRY
PAYPAL_SECRET EKnvFTYf_9CHuYU6tyEvKFNnE0-dTLKjAhyHAfq7MDTotg1bPVy_DzDUwevuQdvFAvPaHr1LfK-SRr7T
STRIPE_SECRET sk_live_Zz6uv4j9BCUySyKUf8m6yxSO
STRIPE_PUBLIC pk_live_SfYiLY0mSlwIAorTXu6OkoUg
SMTP_USERNAME christy@yogaminded.com
SMTP_PASSWORD 68$|>f7<_R0s)Jt
RECEIVING_EMAIL christybyoga@me.com
MAILCHIMP_KEY c5d45846cc497b3d67c9dd5f1175fbaa-us11
NEWSLETTER_LIST 1d6c2eeb79
GOOGLE_RECAPTCHA_SITE_KEY 6LcaX4ceAAAAACHv_71y7rVOxBHl1h8V96B24Ghz
GOOGLE_RECAPTCHA_SECRET_KEY 6LcaX4ceAAAAAIwujf5bf6WlTywH6YqAgoP2s1yx
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
DB_HOST localhost
DB_NAME yogaminded_live
DB_USERNAME yoga_admin_live
DB_PASSWORD B_4FXRBqLy,=
PAYPAL_CLENT_ID AftbmV3Bp-U5ViCa4dC8k2pHz44RcHQ1_arKe71M9BzGEAx7XKpyg6b6ZklXXsrWPDIMDcVdrKqPjWRY
PAYPAL_SECRET EKnvFTYf_9CHuYU6tyEvKFNnE0-dTLKjAhyHAfq7MDTotg1bPVy_DzDUwevuQdvFAvPaHr1LfK-SRr7T
STRIPE_SECRET sk_live_Zz6uv4j9BCUySyKUf8m6yxSO
STRIPE_PUBLIC pk_live_SfYiLY0mSlwIAorTXu6OkoUg
SMTP_USERNAME christy@yogaminded.com
SMTP_PASSWORD 68$|>f7<_R0s)Jt
RECEIVING_EMAIL christybyoga@me.com
MAILCHIMP_KEY c5d45846cc497b3d67c9dd5f1175fbaa-us11
NEWSLETTER_LIST 1d6c2eeb79
GOOGLE_RECAPTCHA_SITE_KEY 6LcaX4ceAAAAACHv_71y7rVOxBHl1h8V96B24Ghz
GOOGLE_RECAPTCHA_SECRET_KEY 6LcaX4ceAAAAAIwujf5bf6WlTywH6YqAgoP2s1yx
0. Whoops\Handler\PrettyPageHandler