I am learning to use Laravel 5.6.
I had AppServ installed with version of PHP 5.6 and for Laravel's requirements it is to have a version equal to or greater than 7.1.3, uninstall AppServ and download Xampp, which has the most current version of PHP. In addition to that, install Laravel through Composer and until then everything is fine.
The problem comes when I want to migrate with this command:
php artisan migrate
Answer that the driver does not exist but really does exist, since I already verify it in my phpinfo, my php.ini and the location of the modules in Xampp with the path that there is in php.ini, and everything fits, plus to execute a function to know if the module exists.
The error in particular is:
[Illuminate\Database\QueryException]
could not find driver: (SQL select * from information_schema.tables
where tables_schema = appmarket and table_name = migrations)
Any other ideas?