laravel-admin error
Error reporting information
An error occurs when running PHP artisan admin:make:
symfony\component\debug\exception\fatalthrowableerror: class'doc\dbal\driver\pdomysql\driver'not found
Operating environment
Windows 10
php:7.3.4
mysql:5.7.26
laravel:5.8
laravel admin:1.8.17
Cause
Doctrine/dbal not found
The reason why I read other people online may be that doctrine/dbal is 3* Caused by the version of.
Solutions
Run at terminal:
composer require doctrine/dbal:2.12.1
Or modify the composer.json as the following:
"require": {
*
*
"doctrine/dbal": "^2.12.1",
*
*
},
Then run
composer update