Uncaught PDOException: SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost' in /home/rudydut/sites/DEVELOPPEMENT/SQL/Site model réduit/index.php on line 3 code example
Example: Illuminate\Database\QueryException : SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'
$ sudo mysql -u root -p
Now you can add a new MySQL user with the username of your choice.
mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
And finally grant superuser privileges to the user you just created.
mysql> GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
after that go and edit .env DB_USERNAME=newuser
DB_PASSWORD=password