Snippets tagged “artisan”
5 snippets use this tag.
- artisan migration error "Class 'Doctrine\\DBAL\\Driver\\PDOMySql\\Driver' not found"PHP
This error message is indicating that the PHP extension for PDO MySQL is not installed or not enabled on your system.
- Could not open input file: artisanPHP
It looks like you are trying to run the artisan command but are getting an error saying that the input file could not be found.
- How to install Laravel's Artisan?PHP
To install Laravel's Artisan, you will need to install the Laravel framework on your machine first.
- php artisan migrate - SQLSTATE[HY000] [1045] Access denied for user 'laravel'@'localhost'PHP
This error message is indicating that the PHP script, "artisan," is attempting to run a database migration command, but the database server is denying access to the user "laravel" on the "localhost" location.
- What are the Differences Between "php artisan dump-autoload" and "composer dump-autoload"?PHP
php artisan dump-autoload is a command that is part of the Artisan command-line interface included with Laravel.