boa tarde, eu subistitui meu projeto com o projeto final do curso, agora nao consigo o fluxo completo da aplicacao....o erro e , bom nao me recordo se ja estava com o erro antes tambem...rs
Illuminate \ Database \ QueryException
could not find driver (SQL: PRAGMA foreign_keys = ON;)
Previous exceptions
could not find driver (0)
D:\Users\rafael.lara\Documents\PROJETOS\LARAVEL ALURA\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
"could not find driver (SQL: PRAGMA foreign_keys = ON;)"