Почему-то большинство моих php команд кустарных мастеров сообщают об ошибке:
C:\Projects\bapestore>php artisan migrate
Illuminate\Database\QueryException
could not find driver (SQL: select * from information_schema.tables where table_schema = bapestore and table_name = migrations and table_type = 'BASE TABLE')
at C:\Projects\bapestore\vendor\laravel\framework\src\Illuminate\Database\Connection.php:669
665| // If an exception occurs when attempting to run a query, we'll format the error
666| // message to include the bindings with SQL, which will make this exception a
667| // lot more helpful to the developer instead of just the database's errors.
668| catch (Exception $e) {
> 669| throw new QueryException(
670| $query, $this->prepareBindings($bindings), $e
671| );
672| }
673|
1 C:\Projects\bapestore\vendor\laravel\framework\src\Illuminate\Database\Connectors\Connector.php:70
PDOException::("could not find driver")
2 C:\Projects\bapestore\vendor\laravel\framework\src\Illuminate\Database\Connectors\Connector.php:70
PDO::__construct()
Я только что установил PHP7, Laravel, MAMP, MySQL Верстак локально на моем Windows 10 для уметь больше заниматься дома. (Господи, неужели это была одиссея ...) А сейчас я пытаюсь подключить свою базу данных, но в учебнике, который я использую, используется ОС Ma c, поэтому я не могу следовать там инструкциям.
Кто-нибудь может понять эту ошибку?