前提・実現したいこと
本当に初心者です。
windowsを使っています。
アプリを作ろうと思ってlaravelをxamppにいれました。
php artisan migrateでエラーが出るので直し方を教えてほしいです。
発生している問題・エラーメッセージ
Illuminate\Database\QueryException : SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and table_type = 'BASE TABLE') at C:\xampp\htdocs\laravel\vendor\laravel\framework\src\Illuminate\Database\Connection.php:665 661| // If an exception occurs when attempting to run a query, we'll format the error 662| // message to include the bindings with SQL, which will make this exception a 663| // lot more helpful to the developer instead of just the database's errors. 664| catch (Exception $e) { > 665| throw new QueryException( 666| $query, $this->prepareBindings($bindings), $e 667| ); 668| } 669| Exception trace:
該当のソースコード
php artisan migrate
試したこと
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=laravel //ここ
DB_USERNAME=root //ここ
DB_PASSWORD=root //ここ
ここのところのなまえを変更しましたが、直りませんでした。
また、database.phpの方も変更しましたが直りませんでした。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。