I have installed Laravel 5 successfully and changed MySQL credentials in database.php file in config directory to \'
mysql\' => [
\'driver\'
In my case, it was actually root user permission problem. My Laravel
configurations were all perfect, but later I found that it was root user permission problem since my MySQL configs were somehow changed.
skip-grant-tables
in following place:[mysqld] skip-grant-tables port=3306
and it worked.