Top "Laravel-artisan" questions

For programming questions about the Artisan Console, the command-line interface included with the Laravel PHP framework

Laravel seeder gives error. Class not found

I'm a newbie in Laravel and and I'm teaching myself how to authenticate from a login table. I have migrated …

php sql laravel laravel-5 laravel-artisan
What is the significance of Application URL in laravel 5

in Config/app.php in laravel source, what is the actual use of url ? It says Application URL to be …

php laravel queue laravel-5 laravel-artisan
problems with database connection in laravel 5

I use the command php artisan migrate to migrate my database connection but I still get the same error and …

laravel-5 laravel-artisan artisan-migrate
Laravel php artisan db:seed leads to "use" statement error

When I try to run php artisan db:seed I get the following error: The use statement with non-compound name …

php laravel laravel-5 laravel-artisan
Laravel php artisan serve to mimic HTTPS

I have been searching around to see if there is a way I can mock SSL for local development using …

php ssl laravel https laravel-artisan
php artisan migrate : [PDOException] could not find driver

My system config is Ubuntu 14.04 + XAMPP + Laravel 4 installed mysql driver is configured on /opt/lampp/htdocs/larva/app/config/database.…

laravel laravel-4 laravel-artisan artisan-migrate
Running multiple Laravel queue workers using Supervisor

I using Laravel queues using a database driver and supervisor to keep a queue worker running all the time: [program:…

laravel laravel-5 queue supervisord laravel-artisan
Carbon\Carbon::now() throws InvalidArgumentException with message 'Trailing data'

When running the following in Laravel Artisan Tinker: $article = new App\Article; $article->published_at = Carbon\Carbon::now(); I …

laravel laravel-5 laravel-artisan php-carbon
Laravel command - Only optional argument

I have a command with this signature order:check {--order} And execute this: php artisan order:check --order 7 For some …

php laravel laravel-5.1 laravel-artisan
Laravel migrate on production server

I'm using Laravel and as part of my deploy routine I have the command RUN php artisan migrate Since I'm …

laravel laravel-artisan migrate