I am trying to initialize a database in Laravel. For this I am using the command php artisan db:seed
It returns the error:
"Could not find driver".
As seen in this screenshot
I am using PostgreSQL and my operational system is Windows 10. Any idea of what could be causing this error?
My .env file
APP_NAME=Revieway APP_ENV=local
APP_KEY=base64:xWdLc4KY3iJKHCupluHuu1nDwvpyk4OAqnsc6RRrGsA=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=localhost:8000
DB_CONNECTION=pgsql
DB_HOST=192.168.99.100:5050
DB_PORT=5432
DB_DATABASE=postgres
DB_USERNAME=postgres
DB_PASSWORD=gghmm
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync