| ( ! ) Warning: file_exists(): open_basedir restriction in effect. File(/autoload.php) is not within the allowed path(s): (/www/wwwroot/cidade.lwagenciaweb.com.br/:/tmp/) in /www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/vonage/nexmo-bridge/src/Autoloader.php on line 69 | ||||
|---|---|---|---|---|
| Call Stack | ||||
| # | Time | Memory | Function | Location |
| 1 | 0.0001 | 355968 | {main}( ) | .../index.php:0 |
| 2 | 0.0001 | 356272 | require( '/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/autoload.php ) | .../index.php:34 |
| 3 | 0.0001 | 356272 | ComposerAutoloaderIniteff78e74c3718a168272d74bdd5321e8::getLoader( ) | .../autoload.php:25 |
| 4 | 0.0010 | 363304 | {closure:/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/composer/autoload_real.php:37-43}( $fileIdentifier = '5c70426340c07411ceee79728a2304a8', $file = '/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/composer/../vonage/nexmo-bridge/src/autoload.php' ) | .../autoload_real.php:45 |
| 5 | 0.0010 | 364864 | require( '/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/vonage/nexmo-bridge/src/autoload.php ) | .../autoload_real.php:41 |
| 6 | 0.0010 | 365240 | Vonage\NexmoBridge\Autoloader::load( ) | .../autoload.php:10 |
| 7 | 0.0010 | 365456 | Vonage\NexmoBridge\Autoloader::getClassLoader( ) | .../Autoloader.php:54 |
| 8 | 0.0010 | 365456 | file_exists( $filename = '/autoload.php' ) | .../Autoloader.php:69 |
// If an exception occurs when attempting to run a query, we'll format the error // message to include the bindings with SQL, which will make this exception a // lot more helpful to the developer instead of just the database's errors. catch (Exception $e) { throw new QueryException( $query, $this->prepareBindings($bindings), $e ); } } // Here we will run this query. If an exception occurs we'll determine if it was // caused by a connection that has been lost. If that is the cause, we'll try // to re-establish connection and re-run the query with a fresh connection. try { $result = $this->runQueryCallback($query, $bindings, $callback); } catch (QueryException $e) { $result = $this->handleQueryException( $e, $query, $bindings, $callback ); } $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); return $statement->fetchAll(); }); } /** * Run a select statement against the database and returns a generator. * * @return array */ protected function runSelect() { return $this->connection->select( $this->toSql(), $this->getBindings(), ! $this->useWritePdo ); } /** * Paginate the given query into a simple paginator. * @return \Illuminate\Support\Collection */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. if (is_null($original)) { $this->columns = $columns; } $result = $callback(); $this->columns = $original; return $result; } */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. * * @return \Illuminate\Database\Eloquent\Model[]|static[] */ public function getModels($columns = ['*']) { return $this->model->hydrate( $this->query->get($columns)->all() )->all(); } /** * Eager load the relationships for the models. $builder = $this->applyScopes(); // If we actually found models we will also eager load any relationships that // have been specified as needing to be eager loaded, which will solve the // n+1 query issue for the developers to avoid running a lot of queries. if (count($models = $builder->getModels($columns)) > 0) { $models = $builder->eagerLoadRelations($models); } return $builder->getModel()->newCollection($models); } * @return \Illuminate\Database\Eloquent\Collection<int, static> */ public static function all($columns = ['*']) { return static::query()->get( is_array($columns) ? $columns : func_get_args() ); } /** * Begin querying a model with eager loading. $general = gs(); $activeTemplate = activeTemplate(); $viewShare['general'] = $general; $viewShare['activeTemplate'] = $activeTemplate; $viewShare['activeTemplateTrue'] = activeTemplate(true); $viewShare['language'] = Language::all(); $viewShare['pages'] = Page::where('tempname',$activeTemplate)->where('slug','!=','/')->where('is_default', 0)->get(); $viewShare['emptyMessage'] = 'Data not found'; view()->share($viewShare); if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * * * @throws \InvalidArgumentException */ public function call($callback, array $parameters = [], $defaultMethod = null) { return BoundMethod::call($this, $callback, $parameters, $defaultMethod); } /** * Get a closure to resolve the given type from the container. * protected function bootProvider(ServiceProvider $provider) { $provider->callBootingCallbacks(); if (method_exists($provider, 'boot')) { $this->call([$provider, 'boot']); } $provider->callBootedCallbacks(); } // for any listeners that need to do work after this initial booting gets // finished. This is useful when ordering the boot-up processes we run. $this->fireAppCallbacks($this->bootingCallbacks); array_walk($this->serviceProviders, function ($p) { $this->bootProvider($p); }); $this->booted = true; $this->fireAppCallbacks($this->bootedCallbacks); // finished. This is useful when ordering the boot-up processes we run. $this->fireAppCallbacks($this->bootingCallbacks); array_walk($this->serviceProviders, function ($p) { $this->bootProvider($p); }); $this->booted = true; $this->fireAppCallbacks($this->bootedCallbacks); } * @param \Illuminate\Contracts\Foundation\Application $app * @return void */ public function bootstrap(Application $app) { $app->boot(); }} $this->hasBeenBootstrapped = true; foreach ($bootstrappers as $bootstrapper) { $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]); $this->make($bootstrapper)->bootstrap($this); $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]); } } * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } /** * Get the route dispatcher callback. { $this->app->instance('request', $request); Facade::clearResolvedInstance('request'); $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }$app = require_once __DIR__.'/core/bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle( $request = Request::capture())->send();$kernel->terminate($request, $response); // For select statements, we'll simply execute the query and return an array // of the database result set. Each element in the array will be a single // row from the database table, and will either be an array or objects. $statement = $this->prepared( $this->getPdoForSelect($useReadPdo)->prepare($query) ); $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); // For select statements, we'll simply execute the query and return an array // of the database result set. Each element in the array will be a single // row from the database table, and will either be an array or objects. $statement = $this->prepared( $this->getPdoForSelect($useReadPdo)->prepare($query) ); $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); { // To execute the statement, we'll simply call the callback, which will actually // run the SQL against the PDO connection. Then we can calculate the time it // took to execute and log the query SQL, bindings and time in our memory. try { return $callback($query, $bindings); } // If an exception occurs when attempting to run a query, we'll format the error // message to include the bindings with SQL, which will make this exception a // lot more helpful to the developer instead of just the database's errors. // Here we will run this query. If an exception occurs we'll determine if it was // caused by a connection that has been lost. If that is the cause, we'll try // to re-establish connection and re-run the query with a fresh connection. try { $result = $this->runQueryCallback($query, $bindings, $callback); } catch (QueryException $e) { $result = $this->handleQueryException( $e, $query, $bindings, $callback ); } $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); return $statement->fetchAll(); }); } /** * Run a select statement against the database and returns a generator. * * @return array */ protected function runSelect() { return $this->connection->select( $this->toSql(), $this->getBindings(), ! $this->useWritePdo ); } /** * Paginate the given query into a simple paginator. * @return \Illuminate\Support\Collection */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. if (is_null($original)) { $this->columns = $columns; } $result = $callback(); $this->columns = $original; return $result; } */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. * * @return \Illuminate\Database\Eloquent\Model[]|static[] */ public function getModels($columns = ['*']) { return $this->model->hydrate( $this->query->get($columns)->all() )->all(); } /** * Eager load the relationships for the models. $builder = $this->applyScopes(); // If we actually found models we will also eager load any relationships that // have been specified as needing to be eager loaded, which will solve the // n+1 query issue for the developers to avoid running a lot of queries. if (count($models = $builder->getModels($columns)) > 0) { $models = $builder->eagerLoadRelations($models); } return $builder->getModel()->newCollection($models); } * @return \Illuminate\Database\Eloquent\Collection<int, static> */ public static function all($columns = ['*']) { return static::query()->get( is_array($columns) ? $columns : func_get_args() ); } /** * Begin querying a model with eager loading. $general = gs(); $activeTemplate = activeTemplate(); $viewShare['general'] = $general; $viewShare['activeTemplate'] = $activeTemplate; $viewShare['activeTemplateTrue'] = activeTemplate(true); $viewShare['language'] = Language::all(); $viewShare['pages'] = Page::where('tempname',$activeTemplate)->where('slug','!=','/')->where('is_default', 0)->get(); $viewShare['emptyMessage'] = 'Data not found'; view()->share($viewShare); if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed ...$args * @return mixed */ public static function unwrapIfClosure($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * * * @throws \InvalidArgumentException */ public function call($callback, array $parameters = [], $defaultMethod = null) { return BoundMethod::call($this, $callback, $parameters, $defaultMethod); } /** * Get a closure to resolve the given type from the container. * protected function bootProvider(ServiceProvider $provider) { $provider->callBootingCallbacks(); if (method_exists($provider, 'boot')) { $this->call([$provider, 'boot']); } $provider->callBootedCallbacks(); } // for any listeners that need to do work after this initial booting gets // finished. This is useful when ordering the boot-up processes we run. $this->fireAppCallbacks($this->bootingCallbacks); array_walk($this->serviceProviders, function ($p) { $this->bootProvider($p); }); $this->booted = true; $this->fireAppCallbacks($this->bootedCallbacks); // finished. This is useful when ordering the boot-up processes we run. $this->fireAppCallbacks($this->bootingCallbacks); array_walk($this->serviceProviders, function ($p) { $this->bootProvider($p); }); $this->booted = true; $this->fireAppCallbacks($this->bootedCallbacks); } * @param \Illuminate\Contracts\Foundation\Application $app * @return void */ public function bootstrap(Application $app) { $app->boot(); }} $this->hasBeenBootstrapped = true; foreach ($bootstrappers as $bootstrapper) { $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]); $this->make($bootstrapper)->bootstrap($this); $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]); } } * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } /** * Get the route dispatcher callback. { $this->app->instance('request', $request); Facade::clearResolvedInstance('request'); $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }$app = require_once __DIR__.'/core/bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle( $request = Request::capture())->send();$kernel->terminate($request, $response);|
[2/2]
QueryException
|
|---|
Illuminate\Database\QueryException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lw_cidade_com_br.languages' doesn't exist (SQL: select * from `languages`)
at /www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:759
at Illuminate\Database\Connection->runQueryCallback()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:719)
at Illuminate\Database\Connection->run()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:421)
at Illuminate\Database\Connection->select()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2636)
at Illuminate\Database\Query\Builder->runSelect()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2624)
at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3160)
at Illuminate\Database\Query\Builder->onceWithColumns()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2625)
at Illuminate\Database\Query\Builder->get()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:699)
at Illuminate\Database\Eloquent\Builder->getModels()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:683)
at Illuminate\Database\Eloquent\Builder->get()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:632)
at Illuminate\Database\Eloquent\Model::all()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/app/Providers/AppServiceProvider.php:40)
at App\Providers\AppServiceProvider->boot()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:651)
at Illuminate\Container\Container->call()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:933)
at Illuminate\Foundation\Application->bootProvider()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:914)
at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
at array_walk()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:915)
at Illuminate\Foundation\Application->boot()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:242)
at Illuminate\Foundation\Application->bootstrapWith()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
at Illuminate\Foundation\Http\Kernel->bootstrap()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle()
(/www/wwwroot/cidade.lwagenciaweb.com.br/index.php:52)
|
|
[1/2]
PDOException
|
|---|
PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lw_cidade_com_br.languages' doesn't exist
at /www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:413
at PDO->prepare()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:413)
at Illuminate\Database\Connection->Illuminate\Database\{closure}()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:752)
at Illuminate\Database\Connection->runQueryCallback()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:719)
at Illuminate\Database\Connection->run()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:421)
at Illuminate\Database\Connection->select()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2636)
at Illuminate\Database\Query\Builder->runSelect()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2624)
at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3160)
at Illuminate\Database\Query\Builder->onceWithColumns()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2625)
at Illuminate\Database\Query\Builder->get()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:699)
at Illuminate\Database\Eloquent\Builder->getModels()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:683)
at Illuminate\Database\Eloquent\Builder->get()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:632)
at Illuminate\Database\Eloquent\Model::all()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/app/Providers/AppServiceProvider.php:40)
at App\Providers\AppServiceProvider->boot()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
at Illuminate\Container\Util::unwrapIfClosure()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:651)
at Illuminate\Container\Container->call()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:933)
at Illuminate\Foundation\Application->bootProvider()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:914)
at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
at array_walk()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:915)
at Illuminate\Foundation\Application->boot()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:242)
at Illuminate\Foundation\Application->bootstrapWith()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
at Illuminate\Foundation\Http\Kernel->bootstrap()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/www/wwwroot/cidade.lwagenciaweb.com.br/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
at Illuminate\Foundation\Http\Kernel->handle()
(/www/wwwroot/cidade.lwagenciaweb.com.br/index.php:52)
|