I am new in Laravel development. I have updated Xampp to 7.3.11 on my Mac Mojave 10.14.6. In Laravel project when I hit php artisan migrate command I got following error.
Open localhost/phpmyadmin and find a tab called User accounts.
localhost/phpmyadmin
User accounts
Find the root user and set its password in your .env and also don't forget to create the database named laravel if it doesn't exist
root
.env
laravel
Then you can clear config cache
php artisan config:clear
And migrate
php artisan migrate
Hope this helps