47. InvalidArgumentException
…/­bootstrap/­cache/­compiled.php13812
46. Illuminate\View\FileViewFinder findInPaths
…/­bootstrap/­cache/­compiled.php13785
45. Illuminate\View\FileViewFinder find
…/­bootstrap/­cache/­compiled.php13913
44. Illuminate\View\Factory make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­helpers.php648
43. view
…/­app/­Http/­Controllers/­TextController.php49
42. App\Http\Controllers\TextController showPage
<#unknown>0
41. call_user_func_array
…/­bootstrap/­cache/­compiled.php8808
40. Illuminate\Routing\Controller callAction
…/­bootstrap/­cache/­compiled.php8877
39. Illuminate\Routing\ControllerDispatcher call
…/­bootstrap/­cache/­compiled.php8857
38. Illuminate\Routing\ControllerDispatcher Illuminate\Routing\{closure}
<#unknown>0
37. call_user_func
…/­bootstrap/­cache/­compiled.php9514
36. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
<#unknown>0
35. call_user_func
…/­bootstrap/­cache/­compiled.php9496
34. Illuminate\Pipeline\Pipeline then
…/­bootstrap/­cache/­compiled.php8858
33. Illuminate\Routing\ControllerDispatcher callWithinStack
…/­bootstrap/­cache/­compiled.php8843
32. Illuminate\Routing\ControllerDispatcher dispatch
…/­bootstrap/­cache/­compiled.php7793
31. Illuminate\Routing\Route runWithCustomDispatcher
…/­bootstrap/­cache/­compiled.php7764
30. Illuminate\Routing\Route run
…/­bootstrap/­cache/­compiled.php7417
29. Illuminate\Routing\Router Illuminate\Routing\{closure}
<#unknown>0
28. call_user_func
…/­bootstrap/­cache/­compiled.php9514
27. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
<#unknown>0
26. call_user_func
…/­bootstrap/­cache/­compiled.php9496
25. Illuminate\Pipeline\Pipeline then
…/­bootstrap/­cache/­compiled.php7418
24. Illuminate\Routing\Router runRouteWithinStack
…/­bootstrap/­cache/­compiled.php7406
23. Illuminate\Routing\Router dispatchToRoute
…/­bootstrap/­cache/­compiled.php7391
22. Illuminate\Routing\Router dispatch
…/­bootstrap/­cache/­compiled.php2262
21. Illuminate\Foundation\Http\Kernel Illuminate\Foundation\Http\{closure}
<#unknown>0
20. call_user_func
…/­bootstrap/­cache/­compiled.php9514
19. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­bootstrap/­cache/­compiled.php12802
18. Illuminate\View\Middleware\ShareErrorsFromSession handle
<#unknown>0
17. call_user_func_array
…/­bootstrap/­cache/­compiled.php9506
16. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­bootstrap/­cache/­compiled.php11437
15. Illuminate\Session\Middleware\StartSession handle
<#unknown>0
14. call_user_func_array
…/­bootstrap/­cache/­compiled.php9506
13. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­bootstrap/­cache/­compiled.php12543
12. Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse handle
<#unknown>0
11. call_user_func_array
…/­bootstrap/­cache/­compiled.php9506
10. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­bootstrap/­cache/­compiled.php12482
9. Illuminate\Cookie\Middleware\EncryptCookies handle
<#unknown>0
8. call_user_func_array
…/­bootstrap/­cache/­compiled.php9506
7. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­bootstrap/­cache/­compiled.php2932
6. Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode handle
<#unknown>0
5. call_user_func_array
…/­bootstrap/­cache/­compiled.php9506
4. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
<#unknown>0
3. call_user_func
…/­bootstrap/­cache/­compiled.php9496
2. Illuminate\Pipeline\Pipeline then
…/­bootstrap/­cache/­compiled.php2209
1. Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
…/­bootstrap/­cache/­compiled.php2192
0. Illuminate\Foundation\Http\Kernel handle
…/­public/­index.php51

InvalidArgumentException

View [text.about&rut=fe6c351dc2549c8e24ef47dec8dfc96c66363a0d465c4bde11cff79abb9ed442] not found.

/var/www/novaplat/bootstrap/cache/compiled.php
                if ($this->files->exists($viewPath = $path . '/' . $file)) {
                    return $viewPath;
                }
            }
        }
        throw new InvalidArgumentException("View [{$name}] not found.");
    }
    protected function getPossibleViewFiles($name)
    {
        return array_map(function ($extension) use($name) {
/var/www/novaplat/bootstrap/cache/compiled.php
            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)
    {
        list($namespace, $view) = $this->getNamespaceSegments($name);
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        if (isset($this->aliases[$view])) {
            $view = $this->aliases[$view];
        }
        $view = $this->normalizeName($view);
        $path = $this->finder->find($view);
        $data = array_merge($mergeData, $this->parseData($data));
        $this->callCreator($view = new View($this, $this->getEngineFromPath($path), $view, $path, $data));
        return $view;
    }
/var/www/novaplat/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php
    {
        $factory = app('Illuminate\Contracts\View\Factory');
 
        if (func_num_args() === 0) {
            return $factory;
        }
 
        return $factory->make($view, $data, $mergeData);
    }
}
/var/www/novaplat/app/Http/Controllers/TextController.php
    function showSecurity()
    {
        return view('text.security');
    }
 
    function showPage($page)
    {
        return view('text.'.$page);
    }
}
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    }
    public static function setRouter(Router $router)
    {
        static::$router = $router;
    }
    public function callAction($method, $parameters)
    {
        return call_user_func_array(array($this, $method), $parameters);
    }
    public function missingMethod($parameters = array())
/var/www/novaplat/bootstrap/cache/compiled.php
    public function methodExcludedByOptions($method, array $options)
    {
        return !empty($options['only']) && !in_array($method, (array) $options['only']) || !empty($options['except']) && in_array($method, (array) $options['except']);
    }
    protected function call($instance, $route, $method)
    {
        $parameters = $this->resolveClassMethodDependencies($route->parametersWithoutNulls(), $instance, $method);
        return $instance->callAction($method, $parameters);
    }
    protected function before($instance, $route, $request, $method)
/var/www/novaplat/bootstrap/cache/compiled.php
        return $this->container->make($controller);
    }
    protected function callWithinStack($instance, $route, $request, $method)
    {
        $middleware = $this->getMiddleware($instance, $method);
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        return (new Pipeline($this->container))->send($request)->through($shouldSkipMiddleware ? array() : $middleware)->then(function ($request) use($instance, $route, $method) {
            return $this->router->prepareResponse($request, $this->call($instance, $route, $method));
        });
    }
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
                }
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use($destination) {
            return call_user_func($destination, $passable);
        };
    }
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
        $this->method = $method;
        return $this;
    }
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
/var/www/novaplat/bootstrap/cache/compiled.php
    }
    protected function callWithinStack($instance, $route, $request, $method)
    {
        $middleware = $this->getMiddleware($instance, $method);
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        return (new Pipeline($this->container))->send($request)->through($shouldSkipMiddleware ? array() : $middleware)->then(function ($request) use($instance, $route, $method) {
            return $this->router->prepareResponse($request, $this->call($instance, $route, $method));
        });
    }
    protected function getMiddleware($instance, $method)
/var/www/novaplat/bootstrap/cache/compiled.php
    }
    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->callWithinStack($instance, $route, $request, $method);
        }
        return $response;
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return $this->container->bound('illuminate.route.dispatcher');
    }
    protected function runWithCustomDispatcher(Request $request)
    {
        list($class, $method) = explode('@', $this->action['uses']);
        $dispatcher = $this->container->make('illuminate.route.dispatcher');
        return $dispatcher->dispatch($this, $request, $class, $method);
    }
    public function matches(Request $request, $includingMethod = true)
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        $this->container = $this->container ?: new Container();
        try {
            if (!is_string($this->action['uses'])) {
                return $this->runCallable($request);
            }
            if ($this->customDispatcherIsBound()) {
                return $this->runWithCustomDispatcher($request);
            }
            return $this->runController($request);
/var/www/novaplat/bootstrap/cache/compiled.php
        return $response;
    }
    protected function runRouteWithinStack(Route $route, Request $request)
    {
        $middleware = $this->gatherRouteMiddlewares($route);
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        return (new Pipeline($this->container))->send($request)->through($shouldSkipMiddleware ? array() : $middleware)->then(function ($request) use($route) {
            return $this->prepareResponse($request, $route->run($request));
        });
    }
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
                }
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use($destination) {
            return call_user_func($destination, $passable);
        };
    }
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
        $this->method = $method;
        return $this;
    }
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
/var/www/novaplat/bootstrap/cache/compiled.php
    }
    protected function runRouteWithinStack(Route $route, Request $request)
    {
        $middleware = $this->gatherRouteMiddlewares($route);
        $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true;
        return (new Pipeline($this->container))->send($request)->through($shouldSkipMiddleware ? array() : $middleware)->then(function ($request) use($route) {
            return $this->prepareResponse($request, $route->run($request));
        });
    }
    public function gatherRouteMiddlewares(Route $route)
/var/www/novaplat/bootstrap/cache/compiled.php
        $route = $this->findRoute($request);
        $request->setRouteResolver(function () use($route) {
            return $route;
        });
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        if (is_null($response)) {
            $response = $this->runRouteWithinStack($route, $request);
        }
        $response = $this->prepareResponse($request, $response);
/var/www/novaplat/bootstrap/cache/compiled.php
        return isset($group['namespace']) && strpos($uses, '\\') !== 0 ? $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);
/var/www/novaplat/bootstrap/cache/compiled.php
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
            return $this->router->dispatch($request);
        };
    }
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
                }
            };
        };
    }
    protected function getInitialSlice(Closure $destination)
    {
        return function ($passable) use($destination) {
            return call_user_func($destination, $passable);
        };
    }
/var/www/novaplat/bootstrap/cache/compiled.php
    public function __construct(ViewFactory $view)
    {
        $this->view = $view;
    }
    public function handle($request, Closure $next)
    {
        $this->view->share('errors', $request->session()->get('errors', new ViewErrorBag()));
        return $next($request);
    }
}
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    return call_user_func_array(array($this->container->make($name), $this->method), array_merge(array($passable, $stack), $parameters));
                }
            };
/var/www/novaplat/bootstrap/cache/compiled.php
    public function handle($request, Closure $next)
    {
        $this->sessionHandled = true;
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);
            $request->setSession($session);
        }
        $response = $next($request);
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    return call_user_func_array(array($this->container->make($name), $this->method), array_merge(array($passable, $stack), $parameters));
                }
            };
/var/www/novaplat/bootstrap/cache/compiled.php
    protected $cookies;
    public function __construct(CookieJar $cookies)
    {
        $this->cookies = $cookies;
    }
    public function handle($request, Closure $next)
    {
        $response = $next($request);
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    return call_user_func_array(array($this->container->make($name), $this->method), array_merge(array($passable, $stack), $parameters));
                }
            };
/var/www/novaplat/bootstrap/cache/compiled.php
    }
    public function disableFor($cookieName)
    {
        $this->except = array_merge($this->except, (array) $cookieName);
    }
    public function handle($request, Closure $next)
    {
        return $this->encrypt($next($this->decrypt($request)));
    }
    protected function decrypt(Request $request)
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    return call_user_func_array(array($this->container->make($name), $this->method), array_merge(array($passable, $stack), $parameters));
                }
            };
/var/www/novaplat/bootstrap/cache/compiled.php
        $this->app = $app;
    }
    public function handle($request, Closure $next)
    {
        if ($this->app->isDownForMaintenance()) {
            throw new HttpException(503);
        }
        return $next($request);
    }
}
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
    {
        return function ($stack, $pipe) {
            return function ($passable) use($stack, $pipe) {
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
                    return call_user_func_array(array($this->container->make($name), $this->method), array_merge(array($passable, $stack), $parameters));
                }
            };
<#unknown>
/var/www/novaplat/bootstrap/cache/compiled.php
        $this->method = $method;
        return $this;
    }
    public function then(Closure $destination)
    {
        $firstSlice = $this->getInitialSlice($destination);
        $pipes = array_reverse($this->pipes);
        return call_user_func(array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable);
    }
    protected function getSlice()
/var/www/novaplat/bootstrap/cache/compiled.php
        return $response;
    }
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
        Facade::clearResolvedInstance('request');
        $this->bootstrap();
        return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? array() : $this->middleware)->then($this->dispatchToRouter());
    }
    public function terminate($request, $response)
/var/www/novaplat/bootstrap/cache/compiled.php
            $router->middleware($key, $middleware);
        }
    }
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
            $response = $this->sendRequestThroughRouter($request);
        } catch (Exception $e) {
            $this->reportException($e);
/var/www/novaplat/public/index.php
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make('Illuminate\Contracts\Http\Kernel');

$response = $kernel->handle(
	$request = Illuminate\Http\Request::capture()
);

Key Value
USER apache
HOME /usr/share/httpd
SCRIPT_NAME /index.php
REQUEST_URI /text/about&rut=fe6c351dc2549c8e24ef47dec8dfc96c66363a0d465c4bde11cff79abb9ed442
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /text/about&rut=fe6c351dc2549c8e24ef47dec8dfc96c66363a0d465c4bde11cff79abb9ed442
REMOTE_PORT 33730
SCRIPT_FILENAME /var/www/novaplat/public/index.php
SERVER_ADMIN root@localhost
CONTEXT_DOCUMENT_ROOT /var/www/novaplat/public
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /var/www/novaplat/public
REMOTE_ADDR 18.219.177.241
SERVER_PORT 443
SERVER_ADDR 46.148.233.212
SERVER_NAME novaplat.ru
SERVER_SOFTWARE Apache/2.4.37 (centos) mod_jk/1.2.48 OpenSSL/1.1.1g
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_HOST novaplat.ru
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT */*
proxy-nokeepalive 1
SSL_TLS_SNI novaplat.ru
HTTPS on
UNIQUE_ID Z9Mu7LtDV3hE9kmg2runegAAARM
REDIRECT_STATUS 200
REDIRECT_SSL_TLS_SNI novaplat.ru
REDIRECT_HTTPS on
REDIRECT_UNIQUE_ID Z9Mu7LtDV3hE9kmg2runegAAARM
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1741893356.8332
REQUEST_TIME 1741893356
APP_ENV production
APP_DEBUG true
APP_KEY HpAs2ltQDIcfcjK2P5FXm5uRKTMFKbSf
APP_HOST https://novaplat.ru
APP_THEME novaplat
APP_PROJECT novaplat
MSERVER_DEV
MSERVER_USER mbank_novaplat
MSERVER_PASSWORD Quohdie7
DB_HOST localhost
DB_DATABASE homestead
DB_USERNAME homestead
DB_PASSWORD secret
CACHE_DRIVER array
SESSION_DRIVER file
QUEUE_DRIVER sync
MAIL_DRIVER mandrill
MAIL_FROM info@novaplat.ru
MAIL_FROM_NAME Novaplat
empty
empty
empty
empty
empty
Key Value
APP_ENV production
APP_DEBUG true
APP_KEY HpAs2ltQDIcfcjK2P5FXm5uRKTMFKbSf
APP_HOST https://novaplat.ru
APP_THEME novaplat
APP_PROJECT novaplat
MSERVER_DEV
MSERVER_USER mbank_novaplat
MSERVER_PASSWORD Quohdie7
DB_HOST localhost
DB_DATABASE homestead
DB_USERNAME homestead
DB_PASSWORD secret
CACHE_DRIVER array
SESSION_DRIVER file
QUEUE_DRIVER sync
MAIL_DRIVER mandrill
MAIL_FROM info@novaplat.ru
MAIL_FROM_NAME Novaplat
0. Whoops\Handler\PrettyPageHandler