SQL error
SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client How to solve this error ?
















Hello there,
I think the way to solve this error is by entering MySQL with root
and running this query:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
Then after that, run these following commands:
php artisan config:clear
php artisan migrate
Let me know if this fixes your problem.
















My database error is resolved thanks to you. However, I am unable to view wave.test.
















Hi there,
You would need to install Laravel Valet. Here is the link to their documentation, so that you can follow the steps on how to install it.
https://laravel.com/docs/8.x/valet
Let me know how it goes.
Regards,
Boyan
















Got it up and running. Thank you.















