Top "Laravel-artisan" questions

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

Could not open input file: artisan

When trying to create a new laravel project, The following error appears on the CLI: Could not open input file: …

php laravel laravel-4 laravel-artisan
No Application Encryption Key Has Been Specified

I'm new to Laravel and I'm trying to use the Artisan command... php artisan serve It displays... Laravel development server …

php laravel laravel-5 laravel-5.5 laravel-artisan
Laravel 5.4 create model, controller and migration in single artisan command

I can create a model and resource controller (binded to model) with the following command php artisan make:controller TodoController …

laravel laravel-5.4 laravel-artisan
What are the Differences Between "php artisan dump-autoload" and "composer dump-autoload"?

I am pretty new to Laravel 4 and Composer. While I do Laravel 4 tutorials, I couldn't understand the difference between those …

php laravel laravel-4 laravel-artisan
Laravel 5 Clear Views Cache

I notice that Laravel cache views are stored in ~/storage/framework/views. Over time, they get to eat up my …

php caching laravel laravel-5 laravel-artisan
SQLSTATE[HY000] [2002] Connection refused within Laravel homestead

Using Mac OS X and Homestead 2.2.1 with Laravel 5.2. In terminal (within homestead in my project folder) I can do php …

php laravel-5 migration homestead laravel-artisan
Laravel 5 - artisan seed [ReflectionException] Class SongsTableSeeder does not exist

When I run php artisan db:seed I am getting the following error: [ReflectionException] Class SongsTableSeeder does not exist What …

laravel composer-php laravel-5 laravel-artisan
ReflectionException: Class ClassName does not exist - Laravel

As soon, I am typing php artisan db:seed command. I'm getting Error Like: [ReflectionException] Class UserTableSeeder does not exist …

php laravel laravel-5 laravel-artisan
Laravel 5 How to switch from Production mode

When I run $ php artisan env I get; Current application environment: production How can I change this to development or …

php laravel laravel-artisan
Artisan, creating tables in database

I am trying to create mysql tables in Laravel 5. I created a file in /project/database/migrations called users.php: [...] …

php laravel laravel-5 laravel-artisan laravel-migrations