18. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php909
17. Illuminate\Foundation\Application abort
…/­vendor/­laravel/­framework/­src/­Illuminate/­Support/­Facades/­Facade.php208
16. Illuminate\Support\Facades\Facade __callStatic
…/­app/­filters.php128
15. {closure}
<#unknown>0
14. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Events/­Dispatcher.php199
13. Illuminate\Events\Dispatcher fire
…/­vendor/­laravel/­framework/­src/­Illuminate/­Events/­Dispatcher.php154
12. Illuminate\Events\Dispatcher until
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1473
11. Illuminate\Routing\Router callRouteFilter
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1435
10. Illuminate\Routing\Router callAttachedBefores
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1322
9. Illuminate\Routing\Router callRouteBefore
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1029
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
…/­public_html/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "" Stacktrace: #18 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:909 #17 Illuminate\Foundation\Application:abort in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:208 #16 Illuminate\Support\Facades\Facade:__callStatic in /home/fisicatv/app/filters.php:128 #15 {closure} in <#unknown>:0 #14 call_user_func_array in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php:199 #13 Illuminate\Events\Dispatcher:fire in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php:154 #12 Illuminate\Events\Dispatcher:until in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1473 #11 Illuminate\Routing\Router:callRouteFilter in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1435 #10 Illuminate\Routing\Router:callAttachedBefores in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1322 #9 Illuminate\Routing\Router:callRouteBefore in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1029 #8 Illuminate\Routing\Router:dispatchToRoute in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1001 #7 Illuminate\Routing\Router:dispatch in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:775 #6 Illuminate\Foundation\Application:dispatch in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:745 #5 Illuminate\Foundation\Application:handle in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Session/Middleware.php:72 #4 Illuminate\Session\Middleware:handle in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php:47 #3 Illuminate\Cookie\Queue:handle in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php:51 #2 Illuminate\Cookie\Guard:handle in /home/fisicatv/vendor/stack/builder/src/Stack/StackedHttpKernel.php:23 #1 Stack\StackedHttpKernel:handle in /home/fisicatv/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /home/fisicatv/public_html/index.php:49

	 * @throws \Symfony\Component\HttpKernel\Exception\HttpException
	 * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
	 */
	public function abort($code, $message = '', array $headers = array())
	{
		if ($code == 404)
		{
			throw new NotFoundHttpException($message);
		}
 
 
		switch (count($args))
		{
			case 0:
				return $instance->$method();
 
			case 1:
				return $instance->$method($args[0]);
 
			case 2:
{
	$menu = Menu::getMenu($menu);
 
	$pages_count = $menu->pages()->count();
 
	if ($pages_count < 1 || ($pages_count > 1 && is_null($route->parameter('slug'))) || ($pages_count == 1 && !is_null($route->parameter('slug'))))
	{
		App::abort(404);
	}
	elseif($pages_count == 1)
<#unknown>
		// payload to each of them so that they receive each of these arguments.
		if ( ! is_array($payload)) $payload = array($payload);
 
		$this->firing[] = $event;
 
		foreach ($this->getListeners($event) as $listener)
		{
			$response = call_user_func_array($listener, $payload);
 
			// If a response is returned from the listener and event halting is enabled
	 *
	 * @param  string  $event
	 * @param  array   $payload
	 * @return mixed
	 */
	public function until($event, $payload = array())
	{
		return $this->fire($event, $payload, true);
	}
 
	 */
	public function callRouteFilter($filter, $parameters, $route, $request, $response = null)
	{
		if ( ! $this->filtering) return null;
 
		$data = array_merge(array($route, $request, $response), $parameters);
 
		return $this->events->until('router.filter: '.$filter, $this->cleanFilterParameters($data));
	}
 
	 * @param  \Illuminate\Http\Request  $request
	 * @return mixed
	 */
	protected function callAttachedBefores($route, $request)
	{
		foreach ($route->beforeFilters() as $filter => $parameters)
		{
			$response = $this->callRouteFilter($filter, $parameters, $route, $request);
 
			if ( ! is_null($response)) return $response;
	 * @param  \Illuminate\Http\Request  $request
	 * @return mixed
	 */
	public function callRouteBefore($route, $request)
	{
		$response = $this->callPatternFilters($route, $request);
 
		return $response ?: $this->callAttachedBefores($route, $request);
	}
 
		$route = $this->findRoute($request);
 
		$this->events->fire('router.matched', array($route, $request));
 
		// Once we have successfully matched the incoming request to a given route we
		// can call the before filters on that route. This works similar to global
		// filters in that if a response is returned we will not call the route.
		$response = $this->callRouteBefore($route, $request);
 
		if (is_null($response))
		// 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();
 
Key Value
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
LSCAPI_CRIU_SYNC_FD 7
HTTP_ACCEPT */*
HTTP_CONNECTION close
CONTENT_LENGTH 0
HTTP_HOST www.fisicatvedras.pt
HTTP_USER_AGENT claudebot
HTTP_X_FORWARDED_FOR 34.236.152.203
HTTP_X_FORWARDED_BY 94.46.175.157:80
HTTP_X_FORWARDED_PORT 80
HTTP_X_FORWARDED_PROTO http
REDIRECT_UNIQUE_ID ZflM4JiYA-XDWBIJDRY-kgAAAAA
REDIRECT_SCRIPT_URL /espaco-saude-fisica/espaco-saude-fisica
REDIRECT_SCRIPT_URI http://www.fisicatvedras.pt/espaco-saude-fisica/espaco-saude-fisica
REDIRECT_STATUS 200
UNIQUE_ID ZflM4JiYA-XDWBIJDRY-kgAAAAA
SCRIPT_URL /espaco-saude-fisica/espaco-saude-fisica
SCRIPT_URI http://www.fisicatvedras.pt/espaco-saude-fisica/espaco-saude-fisica
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.fisicatvedras.pt
SERVER_ADDR 94.46.175.157
SERVER_PORT 80
REMOTE_ADDR 34.236.152.203
DOCUMENT_ROOT /home/fisicatv/public_html
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/fisicatv/public_html
SERVER_ADMIN webmaster@fisicatvedras.pt
SCRIPT_FILENAME /home/fisicatv/public_html/index.php
REMOTE_PORT 47594
REDIRECT_URL /espaco-saude-fisica/espaco-saude-fisica
SERVER_PROTOCOL HTTP/1.0
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /espaco-saude-fisica/espaco-saude-fisica
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710836960.4506
REQUEST_TIME 1710836960
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
LSCAPI_CRIU_SYNC_FD 7
0. Whoops\Handler\PrettyPageHandler