Symfony Exception

PDOException QueryException

HTTP 500 Internal Server Error

SQLSTATE[HY000] [1049] Unknown database 'avalia' (Connection: mysql, SQL: select * from information_schema.tables where table_schema = avalia and table_name = system_configs and table_type = 'BASE TABLE')

Exceptions 2

Illuminate\Database\ QueryException

Show exception properties
Illuminate\Database\QueryException {#321
  +errorInfo: array:3 [
    0 => "HY000"
    1 => 1049
    2 => "Unknown database 'avalia'"
  ]
  +connectionName: "mysql"
  #sql: "select * from information_schema.tables where table_schema = ? and table_name = ? and table_type = 'BASE TABLE'"
  #bindings: array:2 [
    0 => "avalia"
    1 => "system_configs"
  ]
}
  1.                 throw new UniqueConstraintViolationException(
  2.                     $this->getName(), $query$this->prepareBindings($bindings), $e
  3.                 );
  4.             }
  5.             throw new QueryException(
  6.                 $this->getName(), $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.             $this->bindValues($statement$this->prepareBindings($bindings));
  2.             $statement->execute();
  3.             return $statement->fetchAll();
  4.         });
  5.     }
  6.     /**
  7.      * Run a select statement against the database and returns all of the result sets.
  8.      *
  1.      * @param  array  $bindings
  2.      * @return array
  3.      */
  4.     public function selectFromWriteConnection($query$bindings = [])
  5.     {
  6.         return $this->select($query$bindingsfalse);
  7.     }
  8.     /**
  9.      * Run a select statement against the database.
  10.      *
  1.     public function hasTable($table)
  2.     {
  3.         $table $this->connection->getTablePrefix().$table;
  4.         return count($this->connection->selectFromWriteConnection(
  5.             $this->grammar->compileTableExists(), [$this->connection->getDatabaseName(), $table]
  6.         )) > 0;
  7.     }
  8.     /**
  9.      * Get the column listing for a given table.
  1.         if (! $instance) {
  2.             throw new RuntimeException('A facade root has not been set.');
  3.         }
  4.         return $instance->$method(...$args);
  5.     }
  6. }
  1.      *
  2.      * @return void
  3.      */
  4.     public function boot()
  5.     {   
  6.         if (Schema::hasTable('system_configs')) {
  7.             $sistemConfig SystemConfig::first();
  8.             if ($sistemConfig) {
  9.                 config([
  10.                     'adminlte.title' => $sistemConfig->nome,
  11.                     'adminlte.logo' => $sistemConfig->nome,
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.     protected function bootProvider(ServiceProvider $provider)
  2.     {
  3.         $provider->callBootingCallbacks();
  4.         if (method_exists($provider'boot')) {
  5.             $this->call([$provider'boot']);
  6.         }
  7.         $provider->callBootedCallbacks();
  8.     }
  1.         // for any listeners that need to do work after this initial booting gets
  2.         // finished. This is useful when ordering the boot-up processes we run.
  3.         $this->fireAppCallbacks($this->bootingCallbacks);
  4.         array_walk($this->serviceProviders, function ($p) {
  5.             $this->bootProvider($p);
  6.         });
  7.         $this->booted true;
  8.         $this->fireAppCallbacks($this->bootedCallbacks);
Application->Illuminate\Foundation\{closure}()
  1.         // finished. This is useful when ordering the boot-up processes we run.
  2.         $this->fireAppCallbacks($this->bootingCallbacks);
  3.         array_walk($this->serviceProviders, function ($p) {
  4.             $this->bootProvider($p);
  5.         });
  6.         $this->booted true;
  7.         $this->fireAppCallbacks($this->bootedCallbacks);
  8.     }
  1.      * @param  \Illuminate\Contracts\Foundation\Application  $app
  2.      * @return void
  3.      */
  4.     public function bootstrap(Application $app)
  5.     {
  6.         $app->boot();
  7.     }
  8. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

PDOException

SQLSTATE[HY000] [1049] Unknown database 'avalia'

  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.             $config['username'] ?? null$config['password'] ?? null,
  2.         ];
  3.         try {
  4.             return $this->createPdoConnection(
  5.                 $dsn$username$password$options
  6.             );
  7.         } catch (Exception $e) {
  8.             return $this->tryAgainIfCausedByLostConnection(
  9.                 $e$dsn$username$password$options
  10.             );
  1.         $options $this->getOptions($config);
  2.         // We need to grab the PDO options that should be used while making the brand
  3.         // new connection instance. The PDO options control various aspects of the
  4.         // connection's behavior, and some might be specified by the developers.
  5.         $connection $this->createConnection($dsn$config$options);
  6.         if (! empty($config['database'])) {
  7.             $connection->exec("use `{$config['database']}`;");
  8.         }
  1.         return function () use ($config) {
  2.             foreach (Arr::shuffle($this->parseHosts($config)) as $host) {
  3.                 $config['host'] = $host;
  4.                 try {
  5.                     return $this->createConnector($config)->connect($config);
  6.                 } catch (PDOException $e) {
  7.                     continue;
  8.                 }
  9.             }
ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  1.      * @return \PDO
  2.      */
  3.     public function getPdo()
  4.     {
  5.         if ($this->pdo instanceof Closure) {
  6.             return $this->pdo call_user_func($this->pdo);
  7.         }
  8.         return $this->pdo;
  9.     }
  1.      * @param  bool  $useReadPdo
  2.      * @return \PDO
  3.      */
  4.     protected function getPdoForSelect($useReadPdo true)
  5.     {
  6.         return $useReadPdo $this->getReadPdo() : $this->getPdo();
  7.     }
  8.     /**
  9.      * Run an insert statement against the database.
  10.      *
  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             return $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.             $this->bindValues($statement$this->prepareBindings($bindings));
  2.             $statement->execute();
  3.             return $statement->fetchAll();
  4.         });
  5.     }
  6.     /**
  7.      * Run a select statement against the database and returns all of the result sets.
  8.      *
  1.      * @param  array  $bindings
  2.      * @return array
  3.      */
  4.     public function selectFromWriteConnection($query$bindings = [])
  5.     {
  6.         return $this->select($query$bindingsfalse);
  7.     }
  8.     /**
  9.      * Run a select statement against the database.
  10.      *
  1.     public function hasTable($table)
  2.     {
  3.         $table $this->connection->getTablePrefix().$table;
  4.         return count($this->connection->selectFromWriteConnection(
  5.             $this->grammar->compileTableExists(), [$this->connection->getDatabaseName(), $table]
  6.         )) > 0;
  7.     }
  8.     /**
  9.      * Get the column listing for a given table.
  1.         if (! $instance) {
  2.             throw new RuntimeException('A facade root has not been set.');
  3.         }
  4.         return $instance->$method(...$args);
  5.     }
  6. }
  1.      *
  2.      * @return void
  3.      */
  4.     public function boot()
  5.     {   
  6.         if (Schema::hasTable('system_configs')) {
  7.             $sistemConfig SystemConfig::first();
  8.             if ($sistemConfig) {
  9.                 config([
  10.                     'adminlte.title' => $sistemConfig->nome,
  11.                     'adminlte.logo' => $sistemConfig->nome,
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.     protected function bootProvider(ServiceProvider $provider)
  2.     {
  3.         $provider->callBootingCallbacks();
  4.         if (method_exists($provider'boot')) {
  5.             $this->call([$provider'boot']);
  6.         }
  7.         $provider->callBootedCallbacks();
  8.     }
  1.         // for any listeners that need to do work after this initial booting gets
  2.         // finished. This is useful when ordering the boot-up processes we run.
  3.         $this->fireAppCallbacks($this->bootingCallbacks);
  4.         array_walk($this->serviceProviders, function ($p) {
  5.             $this->bootProvider($p);
  6.         });
  7.         $this->booted true;
  8.         $this->fireAppCallbacks($this->bootedCallbacks);
Application->Illuminate\Foundation\{closure}()
  1.         // finished. This is useful when ordering the boot-up processes we run.
  2.         $this->fireAppCallbacks($this->bootingCallbacks);
  3.         array_walk($this->serviceProviders, function ($p) {
  4.             $this->bootProvider($p);
  5.         });
  6.         $this->booted true;
  7.         $this->fireAppCallbacks($this->bootedCallbacks);
  8.     }
  1.      * @param  \Illuminate\Contracts\Foundation\Application  $app
  2.      * @return void
  3.      */
  4.     public function bootstrap(Application $app)
  5.     {
  6.         $app->boot();
  7.     }
  8. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Traces 2

[2/2] QueryException
Illuminate\Database\QueryException:
SQLSTATE[HY000] [1049] Unknown database 'avalia' (Connection: mysql, SQL: select * from information_schema.tables where table_schema = avalia and table_name = system_configs and table_type = 'BASE TABLE')

  at /var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:801
  at Illuminate\Database\Connection->runQueryCallback()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:755)
  at Illuminate\Database\Connection->run()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:424)
  at Illuminate\Database\Connection->select()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:394)
  at Illuminate\Database\Connection->selectFromWriteConnection()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php:44)
  at Illuminate\Database\Schema\MySqlBuilder->hasTable()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:353)
  at Illuminate\Support\Facades\Facade::__callStatic()
     (/var/www/avalia.com.br/html/app/Providers/SystemConfigServiceProvider.php:18)
  at App\Providers\SystemConfigServiceProvider->boot()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:662)
  at Illuminate\Container\Container->call()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1010)
  at Illuminate\Foundation\Application->bootProvider()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:991)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:992)
  at Illuminate\Foundation\Application->boot()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:261)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/avalia.com.br/html/public/index.php:52)                
[1/2] PDOException
PDOException:
SQLSTATE[HY000] [1049] Unknown database 'avalia'

  at /var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65
  at PDO->__construct()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65)
  at Illuminate\Database\Connectors\Connector->createPdoConnection()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:45)
  at Illuminate\Database\Connectors\Connector->createConnection()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24)
  at Illuminate\Database\Connectors\MySqlConnector->connect()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:184)
  at Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  at call_user_func()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:1292)
  at Illuminate\Database\Connection->getPdo()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:521)
  at Illuminate\Database\Connection->getPdoForSelect()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:416)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:788)
  at Illuminate\Database\Connection->runQueryCallback()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:755)
  at Illuminate\Database\Connection->run()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:424)
  at Illuminate\Database\Connection->select()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:394)
  at Illuminate\Database\Connection->selectFromWriteConnection()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php:44)
  at Illuminate\Database\Schema\MySqlBuilder->hasTable()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:353)
  at Illuminate\Support\Facades\Facade::__callStatic()
     (/var/www/avalia.com.br/html/app/Providers/SystemConfigServiceProvider.php:18)
  at App\Providers\SystemConfigServiceProvider->boot()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:662)
  at Illuminate\Container\Container->call()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1010)
  at Illuminate\Foundation\Application->bootProvider()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:991)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:992)
  at Illuminate\Foundation\Application->boot()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:261)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/avalia.com.br/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/avalia.com.br/html/public/index.php:52)