Illuminate \ Database \ QueryException (HY000) SQLSTATE[HY000]: General error: 1 no such table: series (SQL: insert into "series" ("nome") values (teste)) Previous exceptions SQLSTATE[HY000]: General error: 1 no such table: series (HY000)
/Users/cpb/Desktop/Cadastro/controle-series/vendor/laravel/framework/src/Illuminate/Database/Connection.php
 * @param  array     $bindings
 * @param  \Closure  $callback
 * @return mixed
 *
 * @throws \Illuminate\Database\QueryException
 */
protected function runQueryCallback($query, $bindings, Closure $callback)
{
    // 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 {
        $result = $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.
    catch (Exception $e) {
        throw new QueryException(
            $query, $this->prepareBindings($bindings), $e
        );
    }
    return $result;
}
/**
 * Log a query in the connection's query log.
 *
 * @param  string  $query
 * @param  array   $bindings
 * @param  float|null  $time
 * @return void
 */
public function logQuery($query, $bindings, $time = null)
{
    $this->event(new QueryExecuted($query, $bindings, $time, $this));
    if ($this->loggingQueries) {Arguments "SQLSTATE[HY000]: General error: 1 no such table: series (SQL: insert into "series" ("nome") values (teste))"
 
            