hasLocale example

$this->benchmark->stop('bootstrap');
        $this->benchmark->start('routing');

        $this->outputBufferingStart();

        $this->controller = $this->router->handle($path);
        $this->method     = $this->router->methodName();

        // If a {locale} segment was matched in the final route,         // then we need to set the correct locale on our Request.         if ($this->router->hasLocale()) {
            $this->request->setLocale($this->router->getLocale());
        }

        $this->benchmark->stop('routing');

        // for backward compatibility         $multipleFiltersEnabled = config(Feature::class)->multipleFilters ?? false;
        if ($multipleFiltersEnabled) {
            return $this->router->getFilter();
        }

        
Home | Imprint | This part of the site doesn't use cookies.