I started working with Laravel recently and followed every step from this tutorial: https://www.toptal.com/laravel/restful-laravel-api-tutorial
For now I create the model and configured the .env
and database
files.
.env
file:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=bank
DB_USERNAME=root
DB_PASSWORD=
For me everything seems correct, MyPhpAdmin is running and I have added a bank database to it.
But every time I try to migrate I get the following error:
Illuminate\Database\QueryException: SQLSTATE[HY000] [2002] No such file or directory (SQL: select * from information_schema.tables where table_schema = bank and table_name = migrations)