21. InvalidArgumentException
…\bootstrap\compiled.php9555
20. Illuminate\View\FileViewFinder findInPaths
…\bootstrap\compiled.php9528
19. Illuminate\View\FileViewFinder find
…\vendor\laravel\framework\src\Illuminate\View\Factory.php124
18. Illuminate\View\Factory make
…\vendor\laravel\framework\src\Illuminate\Support\Facades\Response.php41
17. Illuminate\Support\Facades\Response view
…\app\controllers\site\actions\RouteController.php163
16. site\BaseController route_Finder
<#unknown>0
15. call_user_func_array
…\vendor\laravel\framework\src\Illuminate\Routing\Controller.php231
14. Illuminate\Routing\Controller callAction
…\bootstrap\compiled.php5848
13. Illuminate\Routing\ControllerDispatcher call
…\bootstrap\compiled.php5836
12. Illuminate\Routing\ControllerDispatcher dispatch
…\bootstrap\compiled.php5041
11. Illuminate\Routing\Router Illuminate\Routing\{closure}
<#unknown>0
10. call_user_func_array
…\bootstrap\compiled.php5399
9. Illuminate\Routing\Route run
…\bootstrap\compiled.php5066
8. Illuminate\Routing\Router dispatchToRoute
…\bootstrap\compiled.php5054
7. Illuminate\Routing\Router dispatch
…\bootstrap\compiled.php716
6. Illuminate\Foundation\Application dispatch
…\bootstrap\compiled.php697
5. Illuminate\Foundation\Application handle
…\bootstrap\compiled.php7826
4. Illuminate\Session\Middleware handle
…\bootstrap\compiled.php8433
3. Illuminate\Cookie\Queue handle
…\bootstrap\compiled.php8380
2. Illuminate\Cookie\Guard handle
…\bootstrap\compiled.php11089
1. Stack\StackedHttpKernel handle
…\bootstrap\compiled.php658
0. Illuminate\Foundation\Application run
…\public\index.php49

InvalidArgumentException

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
InvalidArgumentException thrown with message "View [site.seguros/para-voce] not found." Stacktrace: #21 InvalidArgumentException in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:9555 #20 Illuminate\View\FileViewFinder:findInPaths in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:9528 #19 Illuminate\View\FileViewFinder:find in C:\inetpub\wwwroot\Site\vendor\laravel\framework\src\Illuminate\View\Factory.php:124 #18 Illuminate\View\Factory:make in C:\inetpub\wwwroot\Site\vendor\laravel\framework\src\Illuminate\Support\Facades\Response.php:41 #17 Illuminate\Support\Facades\Response:view in C:\inetpub\wwwroot\Site\app\controllers\site\actions\RouteController.php:163 #16 site\BaseController:route_Finder in <#unknown>:0 #15 call_user_func_array in C:\inetpub\wwwroot\Site\vendor\laravel\framework\src\Illuminate\Routing\Controller.php:231 #14 Illuminate\Routing\Controller:callAction in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5848 #13 Illuminate\Routing\ControllerDispatcher:call in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5836 #12 Illuminate\Routing\ControllerDispatcher:dispatch in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5041 #11 Illuminate\Routing\Router:Illuminate\Routing\{closure} in <#unknown>:0 #10 call_user_func_array in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5399 #9 Illuminate\Routing\Route:run in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5066 #8 Illuminate\Routing\Router:dispatchToRoute in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:5054 #7 Illuminate\Routing\Router:dispatch in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:716 #6 Illuminate\Foundation\Application:dispatch in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:697 #5 Illuminate\Foundation\Application:handle in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:7826 #4 Illuminate\Session\Middleware:handle in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:8433 #3 Illuminate\Cookie\Queue:handle in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:8380 #2 Illuminate\Cookie\Guard:handle in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:11089 #1 Stack\StackedHttpKernel:handle in C:\inetpub\wwwroot\Site\bootstrap\compiled.php:658 #0 Illuminate\Foundation\Application:run in C:\inetpub\wwwroot\Site\public\index.php:49

View [site.seguros/para-voce] not found.

        foreach ((array) $paths as $path) {
            foreach ($this->getPossibleViewFiles($name) as $file) {
                if ($this->files->exists($viewPath = $path . '/' . $file)) {
                    return $viewPath;
                }
            }
        }
        throw new \InvalidArgumentException("View [{$name}] not found.");
    }
    protected function getPossibleViewFiles($name)
    {
        if (isset($this->views[$name])) {
            return $this->views[$name];
        }
        if ($this->hasHintInformation($name = trim($name))) {
            return $this->views[$name] = $this->findNamedPathView($name);
        }
        return $this->views[$name] = $this->findInPaths($name, $this->paths);
    }
    protected function findNamedPathView($name)
	 * @param  array   $mergeData
	 * @return \Illuminate\View\View
	 */
	public function make($view, $data = array(), $mergeData = array())
	{
		if (isset($this->aliases[$view])) $view = $this->aliases[$view];
 
		$path = $this->finder->find($view);
 
		$data = array_merge($mergeData, $this->parseData($data));
	 * @param  array   $headers
	 * @return \Illuminate\Http\Response
	 */
	public static function view($view, $data = array(), $status = 200, array $headers = array())
	{
		$app = Facade::getFacadeApplication();
 
		return static::make($app['view']->make($view, $data), $status, $headers);
	}
 
                    $param = null;
                    if (!file_exists(app_path('views/site/' . $urlimplode . '.blade.php'))) {
                        $segs = \Request::segments();
                        $param = end($segs);
                        $urlimplode = implode('/', array_slice($segs, 0, -1));
                    }

                    return \Response::view('site.' . $urlimplode, ['param' => $param]);
                }
            }
<#unknown>
	 * @param  array   $parameters
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function callAction($method, $parameters)
	{
		$this->setupLayout();
 
		$response = call_user_func_array(array($this, $method), $parameters);
 
		// If no response is returned from the controller action and a layout is being
    {
        Controller::setFilterer($this->filterer);
        return $this->container->make($controller);
    }
    protected function call($instance, $route, $method)
    {
        $parameters = $route->parametersWithoutNulls();
        return $instance->callAction($method, $parameters);
    }
    protected function before($instance, $route, $request, $method)
    }
    public function dispatch(Route $route, Request $request, $controller, $method)
    {
        $instance = $this->makeController($controller);
        $this->assignAfter($instance, $route, $request, $method);
        $response = $this->before($instance, $route, $request, $method);
        if (is_null($response)) {
            $response = $this->call($instance, $route, $method);
        }
        return $response;
    protected function getClassClosure($controller)
    {
        $d = $this->getControllerDispatcher();
        return function () use($d, $controller) {
            $route = $this->current();
            $request = $this->getCurrentRequest();
            list($class, $method) = explode('@', $controller);
            return $d->dispatch($route, $request, $class, $method);
        };
    }
<#unknown>
        }
    }
    public function run()
    {
        $parameters = array_filter($this->parameters(), function ($p) {
            return isset($p);
        });
        return call_user_func_array($this->action['uses'], $parameters);
    }
    public function matches(Request $request, $includingMethod = true)
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        if (is_null($response)) {
            $response = $route->run($request);
        }
        $response = $this->prepareResponse($request, $response);
        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
_FCGI_X_PIPE_ \\.\pipe\IISFCGI-56a5689e-f4bc-4292-a0d8-731b4075fb97
PHP_FCGI_MAX_REQUESTS 10000
PHPRC C:\Program Files (x86)\PHP\v5.4
ALLUSERSPROFILE C:\ProgramData
APPDATA C:\WINDOWS\system32\config\systemprofile\AppData\Roaming
APP_POOL_CONFIG C:\inetpub\temp\apppools\Portal\Portal.config
APP_POOL_ID Portal
CommonProgramFiles C:\Program Files (x86)\Common Files
CommonProgramFiles(x86) C:\Program Files (x86)\Common Files
CommonProgramW6432 C:\Program Files\Common Files
COMPUTERNAME SV-WEB-ALIFE03
ComSpec C:\WINDOWS\system32\cmd.exe
CV_Instance001 C:\Program Files\Commvault\ContentStore\Base
DriverData C:\Windows\System32\Drivers\DriverData
FP_NO_HOST_CHECK NO
LOCALAPPDATA C:\WINDOWS\system32\config\systemprofile\AppData\Local
NUMBER_OF_PROCESSORS 4
OS Windows_NT
Path C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\PHP\v7.2;C:\Program Files (x86)\Internet Explorer;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\dotnet\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\Infor\SunSystems\;C:\Program Files\dotnet\;%JAVA_HOME%bin;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE x86
PROCESSOR_ARCHITEW6432 AMD64
PROCESSOR_IDENTIFIER Intel64 Family 6 Model 85 Stepping 4, GenuineIntel
PROCESSOR_LEVEL 6
PROCESSOR_REVISION 5504
ProgramData C:\ProgramData
ProgramFiles C:\Program Files (x86)
ProgramFiles(x86) C:\Program Files (x86)
ProgramW6432 C:\Program Files
PSModulePath C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\
PUBLIC C:\Users\Public
snow_agent C:\Program Files\Snow Software\Inventory\Agent
SUNSYS_JAVA_HOME64 C:\Program Files (x86)\Java\jdk-11.0.2\
SUNSYS_TOMCAT_HOME C:\Program Files\Apache\apache-tomcat-9.0.20\
SystemDrive C:
SystemRoot C:\WINDOWS
TEMP C:\WINDOWS\TEMP
TMP C:\WINDOWS\TEMP
USERDOMAIN ALSEG
USERNAME SV-WEB-ALIFE03$
USERPROFILE C:\WINDOWS\system32\config\systemprofile
windir C:\WINDOWS
windows_tracing_flags 3
windows_tracing_logfile C:\BVTBin\Tests\installpackage\csilogfile.log
ORIG_PATH_INFO /novosite/index.php
URL /novosite/index.php
SERVER_SOFTWARE Microsoft-IIS/10.0
SERVER_PROTOCOL HTTP/1.1
SERVER_PORT_SECURE 1
SERVER_PORT 443
SERVER_NAME www.alseg.com.br
SCRIPT_NAME /novosite/index.php
SCRIPT_FILENAME C:\inetpub\wwwroot\Site\public\index.php
REQUEST_URI /novosite/seguros/para-voce/american-life-freedom
REQUEST_METHOD GET
REMOTE_USER
REMOTE_PORT 47266
REMOTE_HOST 34.206.64.143
REMOTE_ADDR 34.206.64.143
QUERY_STRING
PATH_TRANSLATED C:\inetpub\wwwroot\Site\public\index.php
LOGON_USER
LOCAL_ADDR 172.18.51.2
INSTANCE_META_PATH /LM/W3SVC/2
INSTANCE_NAME PORTAL
INSTANCE_ID 2
HTTPS_SERVER_SUBJECT CN=*.alseg.com.br
HTTPS_SERVER_ISSUER C=GB, S=Greater Manchester, L=Salford, O=Sectigo Limited, CN=Sectigo RSA Domain Validation Secure Server CA
HTTPS_SECRETKEYSIZE 2048
HTTPS_KEYSIZE 256
HTTPS on
GATEWAY_INTERFACE CGI/1.1
DOCUMENT_ROOT C:\inetpub\wwwroot
CONTENT_TYPE
CONTENT_LENGTH 0
CERT_SUBJECT
CERT_SERIALNUMBER
CERT_ISSUER
CERT_FLAGS
CERT_COOKIE
AUTH_USER
AUTH_PASSWORD
AUTH_TYPE
APPL_PHYSICAL_PATH C:\inetpub\wwwroot\
APPL_MD_PATH /LM/W3SVC/2/ROOT
IIS_UrlRewriteModule 7,1,1993,2336
UNENCODED_URL /novosite/seguros/para-voce/american-life-freedom
IIS_WasUrlRewritten 1
HTTP_X_ORIGINAL_URL /novosite/seguros/para-voce/american-life-freedom
HTTP_USER_AGENT claudebot
HTTP_HOST www.alseg.com.br
HTTP_ACCEPT */*
HTTP_CONTENT_LENGTH 0
FCGI_ROLE RESPONDER
PHP_SELF /novosite/index.php
REQUEST_TIME_FLOAT 1711703667.1726
REQUEST_TIME 1711703667
empty
0. Whoops\Handler\PrettyPageHandler