お世話になります。
チュートリアルサイトを進めていたところ、最後のところで躓いたので質問させてください。
端末:MAC
環境:Homestead
Illuminate\Database\QueryException SQLSTATE[HY000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES) (SQL: select count(*) as aggregate from `products`)
上記の解決策を模索しております。ご存知の方がいらっしゃいましたらご教授いただければ幸いです。
blogディレクトリ内 .env
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=homestead DB_USERNAME=homestead DB_PASSWORD=secret
blogディレクトリ内config > database.php
'database' => env('DB_DATABASE', 'homestead'), 'username' => env('DB_USERNAME', 'homestead'), 'password' => env('DB_PASSWORD', 'secret'),
何卒よろしくお願いいたします。
追加情報1
php artisan config:clear Configuration cache cleared!
回答1件
あなたの回答
tips
プレビュー