0

I wanna make a migration by php artisan migrate but I get an error:

In Connection.php line 664:

  could not find driver (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations)

In Connector.php line 67:
  could not find driver

My env file settings:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
NIKHIL NEDIYODATH
  • 2,703
  • 5
  • 24
  • 30
Nikita
  • 5
  • 1

1 Answers1

1

You need to install php-mysql driver.

Guillermo Mansilla
  • 3,779
  • 2
  • 29
  • 34