php artisan migrate error on MACenter image description here
Looks like you need to add a user to your MySQL instance.
Try:
$ mysql -u root
and then
mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
Use those details in your .env
change
DB_HOST=127.0.0.1
in .env file to
DB_HOST=localhost