^ ErrorException {#248
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO) (SQL: select * from `cms_settings` where `name` = theme_version limit 1) (View: /home/bilgigram.com/ist/resources/views/head.blade.php) (View: /home/bilgigram.com/ist/resources/views/head.blade.php) (View: /home/bilgigram.com/ist/resources/views/head.blade.php)"
#code: 0
#file: "/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php"
#line: 664
-previous: ErrorException {#253
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO) (SQL: select * from `cms_settings` where `name` = theme_version limit 1) (View: /home/bilgigram.com/ist/resources/views/head.blade.php) (View: /home/bilgigram.com/ist/resources/views/head.blade.php)"
#code: 0
#file: "/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php"
#line: 664
-previous: ErrorException {#338
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO) (SQL: select * from `cms_settings` where `name` = theme_version limit 1) (View: /home/bilgigram.com/ist/resources/views/head.blade.php)"
#code: 0
#file: "/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php"
#line: 664
-previous: Illuminate\Database\QueryException {#341
#sql: "select * from `cms_settings` where `name` = ? limit 1"
#bindings: array:1 [
0 => "theme_version"
]
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO) (SQL: select * from `cms_settings` where `name` = theme_version limit 1)"
#code: 1045
#file: "/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php"
#line: 664
-previous: Doctrine\DBAL\Driver\PDO\Exception {#343
-errorCode: 1045
-sqlState: "HY000"
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)"
#code: 1045
#file: "/home/bilgigram.com/ist/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php"
#line: 18
-previous: PDOException {#340
#message: "SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)"
#code: 1045
#file: "/home/bilgigram.com/ist/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php"
#line: 40
+errorInfo: array:3 [
0 => "HY000"
1 => 1045
2 => "Access denied for user 'root'@'localhost' (using password: NO)"
]
trace: {
/home/bilgigram.com/ist/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:40 {
Doctrine\DBAL\Driver\PDOConnection->__construct($dsn, $user = null, $password = null, array $options = null) …
› try {
› parent::__construct($dsn, (string) $user, (string) $password, (array) $options);
› $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [Statement::class, []]);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:67 {
Illuminate\Database\Connectors\Connector->createPdoConnection($dsn, $username, $password, $options) …
› if (class_exists(PDOConnection::class) && ! $this->isPersistentConnection($options)) {
› return new PDOConnection($dsn, $username, $password, $options);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:46 {
Illuminate\Database\Connectors\Connector->createConnection($dsn, array $config, array $options) …
› return $this->createPdoConnection(
› $dsn, $username, $password, $options
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24 {
Illuminate\Database\Connectors\MySqlConnector->connect(array $config) …
› // connection's behavior, and some might be specified by the developers.
› $connection = $this->createConnection($dsn, $config, $options);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:182 {
Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure} …
› try {
› return $this->createConnector($config)->connect($config);
› } catch (PDOException $e) {
}
Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}() {}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:919 {
Illuminate\Database\Connection->getPdo() …
› if ($this->pdo instanceof Closure) {
› return $this->pdo = call_user_func($this->pdo);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:944 {
Illuminate\Database\Connection->getReadPdo() …
›
› return $this->readPdo ?: $this->getPdo();
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:399 {
Illuminate\Database\Connection->getPdoForSelect($useReadPdo = true) …
› {
› return $useReadPdo ? $this->getReadPdo() : $this->getPdo();
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:325 {
Illuminate\Database\Connection->Illuminate\Database\{closure} …
› // row from the database table, and will either be an array or objects.
› $statement = $this->prepared($this->getPdoForSelect($useReadPdo)
› ->prepare($query));
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:657 {
Illuminate\Database\Connection->runQueryCallback($query, $bindings, Closure $callback) …
› try {
› $result = $callback($query, $bindings);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:624 {
Illuminate\Database\Connection->run($query, $bindings, Closure $callback) …
› try {
› $result = $this->runQueryCallback($query, $bindings, $callback);
› } catch (QueryException $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:333 {
Illuminate\Database\Connection->select($query, $bindings = [], $useReadPdo = true) …
› return $statement->fetchAll();
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2130 {
Illuminate\Database\Query\Builder->runSelect() …
› return $this->connection->select(
› $this->toSql(), $this->getBindings(), ! $this->useWritePdo
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2118 {
Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure} …
› return collect($this->onceWithColumns(Arr::wrap($columns), function () {
› return $this->processor->processSelect($this, $this->runSelect());
› }));
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2604 {
Illuminate\Database\Query\Builder->onceWithColumns($columns, $callback) …
›
› $result = $callback();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2119 {
Illuminate\Database\Query\Builder->get($columns = […1]) …
› return $this->processor->processSelect($this, $this->runSelect());
› }));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:77 {
Illuminate\Database\Query\Builder->first($columns = […1]) …
› {
› return $this->take(1)->get($columns)->first();
› }
}
/home/bilgigram.com/ist/vendor/crocodicstudio/crudbooster/src/helpers/CRUDBooster.php:24 {
crocodicstudio\crudbooster\helpers\CRUDBooster::getSetting($name) …
›
› $query = DB::table('cms_settings')->where('name',$name)->first();
› Cache::forever('setting_'.$name,$query->content);
}
/home/bilgigram.com/ist/storage/framework/views/111de791d7f0e792245310c4172bbdf524f9ee92.php:45 {
include …
› <!-- template styles -->\r
› <link rel="stylesheet" href="/assets/css/tevily.css?v=<?php echo e(CB::getSetting('theme_version')); ?>" />\r
› <link rel="stylesheet" href="/assets/css/tevily-responsive.css" />\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b5acf6b57f7a82257a3c523b6ad82e09f3d8559f.php:3 {
include …
› <html lang="<?php echo e(app()->getLocale()); ?>">\r
› <?php echo $__env->make('head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>\r
› <body>\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php:20 {
include …
› <?php $__env->stopSection(); ?>
› <?php echo $__env->make('base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bilgigram.com/ist/resources/views/homepage.blade.php ENDPATH**/ ?>
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}
+errorInfo: array:3 [
0 => "HY000"
1 => 1045
2 => "Access denied for user 'root'@'localhost' (using password: NO)"
]
trace: {
/home/bilgigram.com/ist/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18 {
Doctrine\DBAL\Driver\PDO\Exception::new(PDOException $exception): self …
› {
› return new self($exception);
› }
}
/home/bilgigram.com/ist/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:44 {
Doctrine\DBAL\Driver\PDOConnection->__construct($dsn, $user = null, $password = null, array $options = null) …
› } catch (PDOException $exception) {
› throw Exception::new($exception);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:67 {
Illuminate\Database\Connectors\Connector->createPdoConnection($dsn, $username, $password, $options) …
› if (class_exists(PDOConnection::class) && ! $this->isPersistentConnection($options)) {
› return new PDOConnection($dsn, $username, $password, $options);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:46 {
Illuminate\Database\Connectors\Connector->createConnection($dsn, array $config, array $options) …
› return $this->createPdoConnection(
› $dsn, $username, $password, $options
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24 {
Illuminate\Database\Connectors\MySqlConnector->connect(array $config) …
› // connection's behavior, and some might be specified by the developers.
› $connection = $this->createConnection($dsn, $config, $options);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:182 {
Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure} …
› try {
› return $this->createConnector($config)->connect($config);
› } catch (PDOException $e) {
}
Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}() {}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:919 {
Illuminate\Database\Connection->getPdo() …
› if ($this->pdo instanceof Closure) {
› return $this->pdo = call_user_func($this->pdo);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:944 {
Illuminate\Database\Connection->getReadPdo() …
›
› return $this->readPdo ?: $this->getPdo();
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:399 {
Illuminate\Database\Connection->getPdoForSelect($useReadPdo = true) …
› {
› return $useReadPdo ? $this->getReadPdo() : $this->getPdo();
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:325 {
Illuminate\Database\Connection->Illuminate\Database\{closure} …
› // row from the database table, and will either be an array or objects.
› $statement = $this->prepared($this->getPdoForSelect($useReadPdo)
› ->prepare($query));
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:657 {
Illuminate\Database\Connection->runQueryCallback($query, $bindings, Closure $callback) …
› try {
› $result = $callback($query, $bindings);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:624 {
Illuminate\Database\Connection->run($query, $bindings, Closure $callback) …
› try {
› $result = $this->runQueryCallback($query, $bindings, $callback);
› } catch (QueryException $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:333 {
Illuminate\Database\Connection->select($query, $bindings = [], $useReadPdo = true) …
› return $statement->fetchAll();
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2130 {
Illuminate\Database\Query\Builder->runSelect() …
› return $this->connection->select(
› $this->toSql(), $this->getBindings(), ! $this->useWritePdo
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2118 {
Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure} …
› return collect($this->onceWithColumns(Arr::wrap($columns), function () {
› return $this->processor->processSelect($this, $this->runSelect());
› }));
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2604 {
Illuminate\Database\Query\Builder->onceWithColumns($columns, $callback) …
›
› $result = $callback();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2119 {
Illuminate\Database\Query\Builder->get($columns = […1]) …
› return $this->processor->processSelect($this, $this->runSelect());
› }));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:77 {
Illuminate\Database\Query\Builder->first($columns = […1]) …
› {
› return $this->take(1)->get($columns)->first();
› }
}
/home/bilgigram.com/ist/vendor/crocodicstudio/crudbooster/src/helpers/CRUDBooster.php:24 {
crocodicstudio\crudbooster\helpers\CRUDBooster::getSetting($name) …
›
› $query = DB::table('cms_settings')->where('name',$name)->first();
› Cache::forever('setting_'.$name,$query->content);
}
/home/bilgigram.com/ist/storage/framework/views/111de791d7f0e792245310c4172bbdf524f9ee92.php:45 {
include …
› <!-- template styles -->\r
› <link rel="stylesheet" href="/assets/css/tevily.css?v=<?php echo e(CB::getSetting('theme_version')); ?>" />\r
› <link rel="stylesheet" href="/assets/css/tevily-responsive.css" />\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b5acf6b57f7a82257a3c523b6ad82e09f3d8559f.php:3 {
include …
› <html lang="<?php echo e(app()->getLocale()); ?>">\r
› <?php echo $__env->make('head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>\r
› <body>\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php:20 {
include …
› <?php $__env->stopSection(); ?>
› <?php echo $__env->make('base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bilgigram.com/ist/resources/views/homepage.blade.php ENDPATH**/ ?>
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}
+errorInfo: array:3 [
0 => "HY000"
1 => 1045
2 => "Access denied for user 'root'@'localhost' (using password: NO)"
]
trace: {
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 {
Illuminate\Database\Connection->runQueryCallback($query, $bindings, Closure $callback) …
› catch (Exception $e) {
› throw new QueryException(
› $query, $this->prepareBindings($bindings), $e
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:624 {
Illuminate\Database\Connection->run($query, $bindings, Closure $callback) …
› try {
› $result = $this->runQueryCallback($query, $bindings, $callback);
› } catch (QueryException $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:333 {
Illuminate\Database\Connection->select($query, $bindings = [], $useReadPdo = true) …
› return $statement->fetchAll();
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2130 {
Illuminate\Database\Query\Builder->runSelect() …
› return $this->connection->select(
› $this->toSql(), $this->getBindings(), ! $this->useWritePdo
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2118 {
Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure} …
› return collect($this->onceWithColumns(Arr::wrap($columns), function () {
› return $this->processor->processSelect($this, $this->runSelect());
› }));
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2604 {
Illuminate\Database\Query\Builder->onceWithColumns($columns, $callback) …
›
› $result = $callback();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2119 {
Illuminate\Database\Query\Builder->get($columns = […1]) …
› return $this->processor->processSelect($this, $this->runSelect());
› }));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:77 {
Illuminate\Database\Query\Builder->first($columns = […1]) …
› {
› return $this->take(1)->get($columns)->first();
› }
}
/home/bilgigram.com/ist/vendor/crocodicstudio/crudbooster/src/helpers/CRUDBooster.php:24 {
crocodicstudio\crudbooster\helpers\CRUDBooster::getSetting($name) …
›
› $query = DB::table('cms_settings')->where('name',$name)->first();
› Cache::forever('setting_'.$name,$query->content);
}
/home/bilgigram.com/ist/storage/framework/views/111de791d7f0e792245310c4172bbdf524f9ee92.php:45 {
include …
› <!-- template styles -->\r
› <link rel="stylesheet" href="/assets/css/tevily.css?v=<?php echo e(CB::getSetting('theme_version')); ?>" />\r
› <link rel="stylesheet" href="/assets/css/tevily-responsive.css" />\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b5acf6b57f7a82257a3c523b6ad82e09f3d8559f.php:3 {
include …
› <html lang="<?php echo e(app()->getLocale()); ?>">\r
› <?php echo $__env->make('head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>\r
› <body>\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php:20 {
include …
› <?php $__env->stopSection(); ?>
› <?php echo $__env->make('base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bilgigram.com/ist/resources/views/homepage.blade.php ENDPATH**/ ?>
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}
#severity: E_ERROR
trace: {
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 {
Illuminate\View\Engines\CompilerEngine->handleViewException(Exception $e, $obLevel) …
› catch (Exception $e) {
› throw new QueryException(
› $query, $this->prepareBindings($bindings), $e
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:45 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› } catch (Exception $e) {
› $this->handleViewException($e, $obLevel);
› } catch (Throwable $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b5acf6b57f7a82257a3c523b6ad82e09f3d8559f.php:3 {
include …
› <html lang="<?php echo e(app()->getLocale()); ?>">\r
› <?php echo $__env->make('head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>\r
› <body>\r
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php:20 {
include …
› <?php $__env->stopSection(); ?>
› <?php echo $__env->make('base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bilgigram.com/ist/resources/views/homepage.blade.php ENDPATH**/ ?>
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}
#severity: E_ERROR
trace: {
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 {
Illuminate\View\Engines\CompilerEngine->handleViewException(Exception $e, $obLevel) …
› catch (Exception $e) {
› throw new QueryException(
› $query, $this->prepareBindings($bindings), $e
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:45 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› } catch (Exception $e) {
› $this->handleViewException($e, $obLevel);
› } catch (Throwable $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php:20 {
include …
› <?php $__env->stopSection(); ?>
› <?php echo $__env->make('base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bilgigram.com/ist/resources/views/homepage.blade.php ENDPATH**/ ?>
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› try {
› include $__path;
› } catch (Exception $e) {
arguments: {
"/home/bilgigram.com/ist/storage/framework/views/b9f4d9bd56c9e320d09222cf7175f8f281be032e.php"
}
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}
#severity: E_ERROR
trace: {
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 {
Illuminate\View\Engines\CompilerEngine->handleViewException(Exception $e, $obLevel) …
› catch (Exception $e) {
› throw new QueryException(
› $query, $this->prepareBindings($bindings), $e
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:45 {
Illuminate\View\Engines\PhpEngine->evaluatePath($__path, $__data) …
› } catch (Exception $e) {
› $this->handleViewException($e, $obLevel);
› } catch (Throwable $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:59 {
Illuminate\View\Engines\CompilerEngine->get($path, array $data = []) …
› // which have been rendered for right exception messages to be generated.
› $results = $this->evaluatePath($compiled, $data);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:142 {
Illuminate\View\View->getContents() …
› {
› return $this->engine->get($this->path, $this->gatherData());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:125 {
Illuminate\View\View->renderContents() …
›
› $contents = $this->getContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/View.php:90 {
Illuminate\View\View->render(callable $callback = null) …
› try {
› $contents = $this->renderContents();
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Http/Response.php:42 {
Illuminate\Http\Response->setContent($content) …
› elseif ($content instanceof Renderable) {
› $content = $content->render();
› }
}
/home/bilgigram.com/ist/vendor/symfony/http-foundation/Response.php:205 {
Symfony\Component\HttpFoundation\Response->__construct($content = '', int $status = 200, array $headers = []) …
› $this->headers = new ResponseHeaderBag($headers);
› $this->setContent($content);
› $this->setStatusCode($status);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748 {
Illuminate\Routing\Router::toResponse($request, $response) …
› } elseif (! $response instanceof SymfonyResponse) {
› $response = new Response($response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720 {
Illuminate\Routing\Router->prepareResponse($request, $response) …
› {
› return static::toResponse($request, $response);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:680 {
Illuminate\Routing\Router->Illuminate\Routing\{closure} …
› return $this->prepareResponse(
› $request, $route->run()
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41 {
Illuminate\Routing\Middleware\SubstituteBindings->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:75 {
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle($request, Closure $next) …
› ) {
› return tap($next($request), function ($response) use ($request) {
› if ($this->shouldAddXsrfTokenCookie()) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49 {
Illuminate\View\Middleware\ShareErrorsFromSession->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56 {
Illuminate\Session\Middleware\StartSession->handle($request, Closure $next) …
›
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37 {
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle($request, Closure $next) …
› {
› $response = $next($request);
›
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66 {
Illuminate\Cookie\Middleware\EncryptCookies->handle($request, Closure $next) …
› {
› return $this->encrypt($next($this->decrypt($request)));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:682 {
Illuminate\Routing\Router->runRouteWithinStack(Route $route, Request $request) …
› );
› });
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:657 {
Illuminate\Routing\Router->runRoute(Request $request, Route $route) …
› return $this->prepareResponse($request,
› $this->runRouteWithinStack($route, $request)
› );
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:623 {
Illuminate\Routing\Router->dispatchToRoute(Request $request) …
› {
› return $this->runRoute($request, $this->findRoute($request));
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Router.php:612 {
Illuminate\Routing\Router->dispatch(Request $request) …
›
› return $this->dispatchToRoute($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176 {
Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure} …
›
› return $this->router->dispatch($request);
› };
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:30 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
› try {
› return $destination($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:62 {
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle($request, Closure $next) …
›
› return $next($request);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:163 {
Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure} …
› $response = method_exists($pipe, $this->method)
› ? $pipe->{$this->method}(...$parameters)
› : $pipe(...$parameters);
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:53 {
Illuminate\Routing\Pipeline->Illuminate\Routing\{closure} …
›
› return $callable($passable);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:104 {
Illuminate\Pipeline\Pipeline->then(Closure $destination) …
›
› return $pipeline($this->passable);
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 {
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter($request) …
› ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
› ->then($this->dispatchToRouter());
› }
}
/home/bilgigram.com/ist/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 {
Illuminate\Foundation\Http\Kernel->handle($request) …
›
› $response = $this->sendRequestThroughRouter($request);
› } catch (Exception $e) {
}
/home/bilgigram.com/ist/public/index.php:53 {
› $response = $kernel->handle(
› $request = Illuminate\Http\Request::capture()
› );
}
}
}