Laravel migration cannot find driver when using sqlsrv database in windows
问题 I am using sqlsrv database connection in my project as I need to connect to Microsoft SQL Database. I have successfully installed the sqlsrv driver because I can connect to the Database to retrieve data. But when I try to do the Laravel Migration, it shows an error: Illuminate\Database\QueryException : could not find driver (SQL: select * from sysobjects where type = 'U' and name = migrations) Below is my .env DB_CONNECTION=sqlsrv DB_HOST=**********.database.windows.net DB_PORT=1433 DB